Python 3.x 快速安裝和開始


下載

馬上安裝 【 以 Windows 為例 】

Python
Python
⒉ 安裝 python-3.11.1-amd64.exe ( 記得請勾選 ✅ Add python.exe to PATH )
Python
⒊ 完成安裝
Python
Python

檢查 Python 版本的 3 種方法

打開你的 ” 終端機 ” (@ Windows)

python -V ↩️
C:\>python -V
Python 3.11.1
python --version ↩️
C:\>python --version
Python 3.11.1
python ↩️
exit()
C:\>python
Python 3.11.1 (tags/v3.11.1:a7a450f, Dec 6 2022, 19:58:39) 
[MSC v.1934 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" 
for more information.
>>> exit()

資源

官網下載資源 ➡️ https://www.python.org/downloads/