On Thu, Jul 28, 2016 at 1:40 PM, Cai Gengyang <[email protected]> wrote: > How to debug this ? > >>>> print "This line will be printed." > SyntaxError: Missing parentheses in call to 'print' > -- > https://mail.python.org/mailman/listinfo/python-list
You are using python 3.x. print is a function. Use print("this line
will be printed")
--
Joel Goldstick
http://joelgoldstick.com/blog
http://cc-baseballstats.info/stats/birthdays
--
https://mail.python.org/mailman/listinfo/python-list
