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 nw1045/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>nw1045</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 nw1045/.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 3.0</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
</pydev_project>
1 change: 1 addition & 0 deletions nw1045/answers.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
('Hello World: ', 'Tue Nov 1 14:09:37 2016')
Empty file added nw1045/my_package/__init__.py
Empty file.
17 changes: 17 additions & 0 deletions nw1045/my_package/assignment6.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
'''
Created on Nov 1, 2016

@author: Nan Wu
@email: nw1045@nyu.edu



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