使用 PyCharm 寫 Python


PyCharm IDE 集成開發環境簡介

✅ 語法提示 ✅ 專案管理 ✅ 代碼轉跳 ✅ 代碼除錯 ✅ 代碼提示 ✅ 程式庫集 ✅ 各種插件 ✅ 支援 Windows | macOS | Linux

PyCharm IDE 下載

pycharm-python

立即安裝

雙擊下載後的執行檔 " pycharm-community-2022.3.1.exe "  ( 以 Windows 安裝為例 ) ▷ 選擇下一步 Next ...
pycharm-python
遇到 Create Associates 也可勾選 .py
pycharm-python

開啟專案和選擇直譯器 ( Interpreter )

打開安裝好的 " PyCharm Community Edition 2022.3.1 " ▷ 點擊 " New Project " ...
pycharm-python
輸入專案 " Location " ▷ 再選擇 " Previously configured interpreter " 且在 " Interpreter " 選擇 [ Python 3.11 ] 或其它,如圖所示 ...
pycharm-python
若沒有看到想要的 " Interpreter " ▷ 點擊 " Add Interpreter " ▷ 點擊 " Add Local Interpreter "
pycharm-python
選擇 " System Interpreter "
pycharm-python
點擊 " ... " 和 " 顯示隱藏檔 " 並選擇安裝目錄 " ...\AppData\Local\Programs\Python\Python311\python.exe "
pycharm-python
選擇好 Interpreter 後, 點擊 " Create " 將會看安裝專案 SDK ...
pycharm-python

第一個 程式 Hello World

新增一個 HelloWorld.py
pycharm-python
輸入程式碼 ▷ print("Hello World")
pycharm-python
執行檔案 ▷ " Ctrl + Shift + F10 " 或在專案中的 " HelloWorld.py " 點擊滑鼠右鍵後選擇 " Run HelloWorld "
pycharm-python
會在終端機顯示 " Hello World "
pycharm-python