空格和缩进
if True:
print("This is a true statement.")
print("This is also part of the if block.")
else:
print("This is a false statement.")
print("This is part of the else block.")x = 10
y = 20
z = x + yprint("Hello, world!")
my_function(arg1, arg2)Last updated