Answers for "how to find the version of python"

47

how to check python version

# To check your Python version in the command line use:
python --version

# To check your Python verson inside a script use:
import sys
print(sys.version)
Posted by: Guest on February-29-2020
1

check python version

# 2 ways to check python version
# In the terminal/cmd write the following:

# Way 1
python -V

# Way 2
python -c "import sys; print(sys.version)"
Posted by: Guest on September-30-2021

Code answers related to "how to find the version of python"

Python Answers by Framework

Browse Popular Code Answers by Language