I have googled the whole internets and can't find the reason why I get this error when using range() function:
>>> for x in range(5):
print "Hello World!"
SyntaxError: invalid syntax
I expect 5 Hello Worlds there.
It's ok on Python 2.7, but on Python 3.3.3 (64bits, Windows 8.1) I get this error. Could anybody advice how can I make loops in Python 3.3.3? Is it bug or something has changed a lot since 2.7 regarding "For"?
Thanks. :/