6 Respuestas
+ 1
Python 1.x is no more valid, Python 2.x is considered as legacy, Python 3.x is the actual future. If you want to learn Python 2.x, there is nothing bad in it but no one knows how long 2.x will be valid for the users....there are many functions and libraries which are available in 3.x but not in python 2.x. To use the functions and libraries of 3.x in 2.x, you have to import those things with the help of __future__ module such as:
from __future__ import print
as 2.x uses raw_print() instead of print()
So according to me it will always be better if you learn 3.x which have greater opportunities to move on with Python in future.
BTW your email DP and my WhatsApp DP are same ;D
0
Always learn update versions in any sector or any course..
Python3 is updated version of python, 2, with added more features
0
I see now, okay Thank you
0
At python.org you can read the following:
“We are volunteers who make and take care of the Python programming language. We have decided that January 1, 2020, was the day that we sunset Python 2. That means that we will not improve it anymore after that day, even if someone finds a security problem in it. You should upgrade to Python 3 as soon as you can.”
Regards /Per B
0
Dude just equip yourself with python 3 knowledge