On Thu, 28 Jul 2016 10:40:28 -0700, Cai Gengyang wrote:
> How to debug this ?
> 
>>>> print "This line will be printed."
> SyntaxError: Missing parentheses in call to 'print'

You are probably using Python 3, while the syntax is for Python 2.
Use print("This line will be printed.") instead.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to