📅  最后修改于: 2022-03-11 14:46:26.630000             🧑  作者: Mango
# 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)"