Appearance
Python 是动态类型语言,不需要显式声明变量类型。
x = 10 # 整数 name = "Alice" # 字符串 is_valid = True # 布尔值
列表(List)是 Python 中最常用的数据结构之一。
fruits = ["apple", "banana", "cherry"] fruits.append("date") print(fruits)
for fruit in fruits: print(f"I like {fruit}")