Try   HackMD

影片大綱

  1. Python 的簡單介紹。
  2. 如何安裝 Python,實務操作。
  3. 選擇文字編輯器,實務操作 Visual Studio Code。
  4. 撰寫、並且執行第一個 Python 程式。

影片

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →


筆記

將影片的講解重點記錄下來,
同時收錄部分 YT 留言。

VS code 快速鍵補充

  • 清理畫面
    • 註解快速鍵: Ctrl + /
    • mac : clear,或是 Command + L(K)
  • 關閉左邊的窗格: Ctrl + B
    • Explorer 區塊: Ctrl + Shift + E
    • Extantions 區塊: Ctrl + Shift + X
  • 開關/切換終端機區塊: Ctrl + J,或是 Ctrl + `
  • 切換到編輯區域: Ctrl + 1
  • 畫面往下移動: Ctrl + ↓(方向鍵)

在自己喜愛的地方建立資料夾(專案),在編譯器中打開專案
Terminal:

  • 輸入 python 檔名。可以執行檔案。

END