Hello World in Python [duplicate]
Solution 1:
print("Hello, World!")
You are probably using Python 3.0, where print
is now a function (hence the parenthesis) instead of a statement.
Solution 2:
Unfortunately the xkcd comic isn't completely up to date anymore.
Since Python 3.0 you have to write:
print("Hello world!")
And someone still has to write that antigravity
library :(
Solution 3:
In python 3.x. you use
print("Hello, World")
In Python 2.x. you use
print "Hello, World!"