0
What is the difference between python and python3
4 ответов
+ 7
the biggest difference for beginners is that python3 requires () after print, while python2 doesn't
print 'python2'
print('python3')
0
Python 3 is not backwards compatible with Python 2, if that's what you were wondering. Use Google if you want more details as to why this is.
0
well done