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

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to