📌  相关文章
📜  如何在 cmd 中检查 python 版本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:26.630000             🧑  作者: Mango

代码示例6
# 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)"