HomeWork #1 : python 環境建立 1. https://notebook.google.com/notebook/504b039c-39ff-408b-8a9c-57d1873c1706 2. 學習卡 3. 4. # ============================================================ # 專案名稱:Print Number 1 # 檔案名稱:main.py # 說明: # 這是一個最簡單的 Python 程式。 # 執行程式後,會在終端機(Terminal)印出數字 1。 # ============================================================ # ------------------------------------------------------------ # 使用 print() 函式將資料輸出到螢幕 # # print() 是 Python 內建的輸出函式。 # 括號 () 裡面的內容,就是我們希望顯示在螢幕上的資料。 # # 這裡放入數字 1,因此執行後會顯示: # # 1 # ------------------------------------------------------------ print(1) Python Print Number 1 一個最簡單的 Python 入門程式。 執行程式後,會在終端機(Terminal)印出數字 1 。 📌 執行結果 1 📁 專案結構 python-print-number-1/ │ ├── main.py └── README.md 🐍 程式碼 main.py # ============================================================ # Python Print Number 1 # ============================================================ # # 功能: # 執行程式後,在螢幕上印出數字 1。 # # ============================...