Biting the bullet?

Patrick O'Callaghan pocallaghan at gmail.com
Fri May 22 10:19:16 UTC 2015


On Fri, 2015-05-22 at 00:13 -0400, Kevin Cummings wrote:
> print is a function in python.  Its arguments must appear inside ()'s,
> just like the error messages tell you.
> 
> ie  not:
> 
>         print input['name']
> 
> but instead:
> 
>         print(input['name'])

AFAIK the former would be valid in Python 2, but things changed with
Python 3.

poc



More information about the users mailing list