Looks like this in 2.7
print 'You entered: ' , x , '.'
How would I go about doing this in 3.4. Couldn't find it on the Documentation, a link to that would be sufficient. Thanks for the help!




Posted 14 September 2014 - 08:42 AM
print 'You entered: ' , x , '.'
Posted 14 September 2014 - 08:44 AM
print 'You entered: ' , x , '.'
print('You entered %s.'% x)
Posted 14 September 2014 - 08:50 AM
Posted 14 September 2014 - 09:50 AM
jon.kiparsky, on 14 September 2014 - 09:44 AM, said:
print 'You entered: ' , x , '.'
print('You entered %s.'% x)
andrewsw, on 14 September 2014 - 09:50 AM, said:
