Differences between Python 2 and Python 3 is minimal:-
The print statement has become the print function. Ex-
In python 2 print “Hello World “
In Python 3 print(‘‘Hello World’’)
The raw_input function has also changed to input, so instead of,
raw_input(‘What is your name ‘)
you will see
input(‘What is Your name? ‘)