python入門代碼有:1、打印語句,會在控制臺輸出所寫代碼;2、變量和數據類型,Python中的變量不需要聲明,可以直接賦值,常見的數據類型有字符串、整數、浮點數、列表、字典;3、條件語句,用于根據條件的真假執行不同的代碼塊;4、循環,用于反復執行一段代碼,常見的2種循環是for循環和while循環;5、函數,一段可重用的代碼塊;6、文件操作,Python可以用于讀寫文件。
本教程操作系統:Windows10系統、Dell G3電腦。
Python是一種簡單易學的編程語言,適合初學者入門。以下是一些常見的Python入門代碼示例:
1、打印語句
這是最簡單的Python程序,用于打印輸出”Hello World”。
print("Hello World")
登錄后復制
2、變量和數據類型
Python中的變量不需要聲明,可以直接賦值。以下是一些常見的數據類型和變量操作的示例:
# 字符串 name = "John" print("My name is", name) # 整數 age = 20 print("I am", age, "years old") # 浮點數 height = 1.75 print("I am", height, "meters tall") # 列表 fruits = ["apple", "banana", "orange"] print("My favorite fruit is", fruits[0]) # 字典 person = {"name": "John", "age": 20} print(person["name"], "is", person["age"], "years old")
登錄后復制
3、條件語句
條件語句用于根據條件的真假執行不同的代碼塊。以下是一個簡單的條件語句示例:
age = 18 if age >= 18: print("You are an adult") else: print("You are not an adult yet")
登錄后復制
4、循環
循環用于反復執行一段代碼。以下是兩種常見的循環結構示例:
# for循環 fruits = ["apple", "banana", "orange"] for fruit in fruits: print(fruit) # while循環 count = 0 while count < 5: print(count) count += 1
登錄后復制
5、函數
函數是一段可重用的代碼塊。以下是一個簡單的函數示例:
def greet(name): print("Hello", name) greet("John")
登錄后復制
6、文件操作
Python可以用于讀寫文件。以下是一個讀取文件內容的示例:
file = open("example.txt", "r") content = file.read() print(content) file.close()
登錄后復制
以上是一些Python入門代碼示例,希望能幫助你開始學習Python編程。