+ 1

What is the main diffrens between python 2 and python 3?

15th Sep 2016, 8:45 AM
Fredrik
Fredrik - avatar
2 Answers
+ 2
some differences: 2.7 print "hello" 3 print("hello") 2.7 import Tkinter 3 import tkinter and many different way to import the same modules that are in different location in the 3rd version Many modules were made for the version 2 and they are now migrating towards version 3
15th Sep 2016, 8:51 AM
Giovanni Gatto
Giovanni Gatto - avatar
+ 1
you can find detail about differene on their website.. www.python.org
15th Sep 2016, 8:47 AM
Muhammad Wasim Akram
Muhammad Wasim Akram - avatar