Answers for "check python version of project"

13

check python version

python --version
Posted by: Guest on April-28-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 "check python version of project"

Python Answers by Framework

Browse Popular Code Answers by Language