Using the latest version of Python is always advisable if you want to benefit from the latest security updates, bug fixes, and features. But how do you know which version you’re on? Read on, and we’ll ...
# Pythonのバージョン確認 python --version # Pythonの実行パス確認 which python # Mac/Linux where python # Windows # Pythonの詳細情報 python -c "import sys; print(sys.executable)" python -c "import sys; print(sys.version)" ...