Python 指令可以分为以下几种常见类型:
-
赋值语句:用于将一个值赋给变量。例如:
x = 5 y = "hello"
-
打印语句:用于在控制台输出信息。例如:
print("Hello, World!")
-
条件语句:根据条件执行不同的代码块。例如:
if x > 0: print("x is positive") elif x < 0: print("x is negative") else: print("x is zero")
-
循环语句:重复执行一段代码直到满足某个条件。例如:
for i in range(5): print(i)
-
函数定义和调用:定义一个函数并调用它。例如:
def greet(name): print("Hello, " + name) greet("Alice")
-
变量类型转换:将一个变量转换为另一种类型。例如:
x = 42 y = str(x)
-
模块导入和使用:导入其他模块并使用其中的函数和类。例如:
import math result = math.sqrt(16)
-
异常处理:捕获和处理程序运行时发生的错误。例如:
try: x = 1 / 0 except ZeroDivisionError: print("Cannot divide by zero")
-
类和对象:定义一个类并创建它的实例。例如:
class Person: def __init__(self, name, age): self.name = name self.age = age alice = Person("Alice", 30)
-
文件操作:读取和写入文件。例如:
with open("example.txt", "r") as file: content = file.read() with open("output.txt", "w") as file: file.write("Hello, World!")