What does sys.version_info.major
do?
I understand that sys.version_info
returns the version of interpreter we are using. What role does major
have to do in this?
How does it work in the following code?
import sys
if sys.version_info.major < 3:
#code here
else:
#code here
major can tell you whether it's python2 or python3. I guess it imports different libraries depends on the specific python versions.
I am using python 3.5.1, you can see the
version_info
about it.