首頁 >後端開發 >Python教學 >Python 入門日

Python 入門日

DDD
DDD原創
2024-12-04 07:51:15996瀏覽

Day Getting Started with Python

Python 簡介

Python 是一種多功能且適合初學者的程式語言,以其簡單性和可讀性而聞名。它廣泛應用於網路開發、數據科學、自動化、人工智慧等領域。在本教程中,我們將深入了解 Python 基礎知識,以開啟您的旅程。


第 1 步:安裝 Python

  1. 從官網下載Python。
  2. 安裝 VS Code、PyCharm 等 IDE,或僅使用 IDLE(Python 隨附)。
  3. 透過在終端機中執行 python --version 來驗證安裝。

第 2 步:寫你的第一個 Python 程式

  1. 開啟您的 IDE 或終端。
  2. 建立一個名為 hello.py 的新檔案。
  3. 新增以下程式碼:
   print("Arjun, Kandekar!")
  1. 使用以下命令運行檔案:
   python hello.py

輸出:Arjun,Kandekar!


第三步:理解基本語法

  • 變數與資料型態: 為變數賦值:
  name = "Arjun"  # String
  age = 23        # Integer
  is_student = True  # Boolean
  print(name, age, is_student)
  • 評論: 使用 # 表示單行註釋,使用 ''' 或 """ 表示多行註解:
  # This is a single-line comment
  '''
  This is a
  multi-line comment
  '''

第四步:簡單算術運算

Python 可以處理基本的數學運算:

a = 10
b = 5
print("Addition:", a + b)
print("Subtraction:", a - b)
print("Multiplication:", a * b)
print("Division:", a / b)

練習運動

  1. 編寫一個程序,使用 print() 顯示您的姓名、年齡和最喜歡的愛好。
  2. 對兩個數字執行基本數學運算並列印結果。

Python 控制結構

條件語句

Python 使用 if、elif 和 else 語句根據條件執行程式碼。

範例:

temperature = 30
if temperature > 35:
    print("It's too hot outside!")
elif 20 <= temperature <= 35:
    print("The weather is pleasant.")
else:
    print("It's quite cold outside!")

說明:

  • if:如果條件為真則執行區塊。
  • elif:如果前面的條件不成立,則提供額外的檢查。
  • else:當沒有條件匹配時執行。

Python 中的循環

循環讓您有效率地重複程式碼。 Python 提供兩種主要類型:

  1. for 迴圈: 用於迭代序列或數字範圍。
for i in range(1, 6):
    print(f"Step {i}")
  1. while 循環: 只要條件成立就執行。
count = 1
while count <= 5:
    print(f"Count: {count}")
    count += 1

打破循環

  1. break:立即退出循環。
  2. 繼續:跳過目前迭代並移至下一個迭代。

範例:

   print("Arjun, Kandekar!")

練習

  1. 猜謎遊戲: 寫一個程式來猜測 1 到 10 之間的隨機數。
   python hello.py
  1. 求和: 對從 1 到給定輸入的數字求和。
  name = "Arjun"  # String
  age = 23        # Integer
  is_student = True  # Boolean
  print(name, age, is_student)

結論

今天,您學到了:

  1. Python 設定和語法的基礎知識。
  2. 寫你的第一個程式並執行算術運算。
  3. 使用控制結構(if、for、while)做出決策並重複任務。

練習並嘗試不同的場景。明天,我們將深入研究函數和模組以使您的程式碼更有組織性和可重用性!

以上是Python 入門日的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn