Answers for "terminal check version of python"

6

terminal python version

# in python
$ python --version

# in python3
$ python3 --version
Posted by: Guest on May-28-2020
2

python show current version

import sys
print("Python version")
print (sys.version)
print("Version info.")
print (sys.version_info)
Posted by: Guest on April-07-2021

Code answers related to "terminal check version of python"

Python Answers by Framework

Browse Popular Code Answers by Language