Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions hz1411/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>hz1411</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.python.pydev.PyDevBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.python.pydev.pythonNature</nature>
</natures>
</projectDescription>
8 changes: 8 additions & 0 deletions hz1411/.pydevproject
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?><pydev_project>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/${PROJECT_DIR_NAME}</path>
</pydev_pathproperty>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
</pydev_project>
1 change: 1 addition & 0 deletions hz1411/answers.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello World: Wed Nov 2 17:05:24 2016
Empty file added hz1411/my_package/__init__.py
Empty file.
15 changes: 15 additions & 0 deletions hz1411/my_package/assignment6.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
'''
Created on Nov 2, 2016

@author: evelynz

'''

def hello_world():
print "Hello World: ", time.strftime("%c")
#
# Python hello world
#
if __name__ == "__main__":
import sys, time
hello_world()