使用 PyCharm 寫 Python
內容
PyCharm IDE 集成開發環境簡介
✅ 語法提示 ✅ 專案管理 ✅ 代碼轉跳 ✅ 代碼除錯 ✅ 代碼提示 ✅ 程式庫集 ✅ 各種插件 ✅ 支援 Windows | macOS | Linux
PyCharm IDE 下載
Download ➡️ https://www.jetbrains.com/pycharm/download/#section=windows 選擇 Community
立即安裝
雙擊下載後的執行檔 " pycharm-community-2022.3.1.exe " ( 以 Windows 安裝為例 ) ▷ 選擇下一步 Next ...
遇到 Create Associates 也可勾選 .py
開啟專案和選擇直譯器 ( Interpreter )
打開安裝好的 " PyCharm Community Edition 2022.3.1 " ▷ 點擊 " New Project " ...
輸入專案 " Location " ▷ 再選擇 " Previously configured interpreter " 且在 " Interpreter " 選擇 [ Python 3.11 ] 或其它,如圖所示 ...
若沒有看到想要的 " Interpreter " ▷ 點擊 " Add Interpreter " ▷ 點擊 " Add Local Interpreter "
選擇 " System Interpreter "
點擊 " ... " 和 " 顯示隱藏檔 " 並選擇安裝目錄 " ...\AppData\Local\Programs\Python\Python311\python.exe "
選擇好 Interpreter 後, 點擊 " Create " 將會看安裝專案 SDK ...
第一個 程式 Hello World
新增一個 HelloWorld.py
輸入程式碼 ▷ print("Hello World")
執行檔案 ▷ " Ctrl + Shift + F10 " 或在專案中的 " HelloWorld.py " 點擊滑鼠右鍵後選擇 " Run HelloWorld "
會在終端機顯示 " Hello World "