Problem with 'print'

Chris Angelico rosuav at gmail.com
Sat Jan 9 10:09:36 EST 2016


On Sat, Jan 9, 2016 at 10:40 PM, pablo gormi <pablogormi822 at gmail.com> wrote:
> Hello, recently I downloaded python, but when I try to execute one file
> with the command 'print' it shows me a error. The error is:
>
> Missing parentheses in call to 'print'

The error is telling you what you need to do. Put parentheses around
the call to the print() function. :)

ChrisA



More information about the Python-list mailing list