Is the print syntax in v2.7 not compatible in v3.4?
i remember being told not that
print 0.3
won't work.
And i learned
print '%f' % 1/3
Now in v3.4 here's what happened:
print(1/3)
output: 0.3333333333333333
print `'%f' % 1/3`
output: SyntaxError: invalid syntax
print('%3.3f" % 1/3)
output: SyntaxError: EOL while scanning string literal
print('%(number)3.3f' % {'number':1/3})
output: 0.333
Let me know. Thanks