I have just started using python3.3. The shell looks like this:
Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:06:53) [MSC v.1600 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print ("hello world")
It prints hello world correclty, but in the command line it shows error in line 1 (i.e Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:06:53) [MSC v.1600 64 bit (AMD64)] on win32 ) declaring it as a syntax error.
What is the problem??
print "hello world"in py3.x?print ("hello world")in bash command line