On 05/22/2015 06:19 AM, Patrick O'Callaghan wrote:
> 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.

Then why does my python3 interpreter show the following:

python3
Python 3.3.2 (default, Dec  4 2014, 12:49:00)
[GCC 4.8.3 20140911 (Red Hat 4.8.3-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print 5
  File "<stdin>", line 1
    print 5
          ^
SyntaxError: invalid syntax
>>> print(5)
5
>>>

> poc
> 

-- 
Kevin J. Cummings
kjch...@verizon.net
cummi...@kjchome.homeip.net
cummi...@kjc386.framingham.ma.us
Registered Linux User #1232 (http://www.linuxcounter.net/)
-- 
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