On 9/21/12 10:20 PM, gengyang...@gmail.com wrote:
Hello ,I am currently using Python 3.2.3 . WHen I use the print function by typing print "Game Over" , it mentions " SyntaxError : invalid syntax ". Any ideas on what the problem is and how to resolve it ? Thanks a lot .
print was a statement in python 2.x, it is now a function so you need parenthesis:
>>> print("Game Over") Game Over
GengYang
-- http://mail.python.org/mailman/listinfo/python-list