For the full story read this from Dropbox where he was working.
Cheers!
Clem
println("hello World")Traceback (most recent call last): File "<stdin>", line 1, in <module>NameError: name 'println' is not defined
println("hello World")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'println' is not defined
its
print("hello World")
next time you're in a python console, type
import this
and enjoy the Zen of Python
Obviously I didn't learn enough! Hopefully I will learn more in week 2.
Dubbie
Import is a very often used to "Include" outside code written in python or C. Learn that and common logic and your good to go.
Cheers...
Top Comments