标签:enc state python cas bsp 缩进 表达 cond title
Python 条件语句是通过一条或多条语句的执行结果(True 或 False)来决定执行的代码块。多条语句使用 and/or/not 来连接。
if condition_1: statement elif condition_2: statement else: statement
注意:
x if Condition else y
例如:
>>> a = 1 if 1 > 2 else 2
>>> a
2
while condition: statement else: statement
for variable in sequence: statement else: statement
continue # 跳过当前循环的剩余语句,然后继续执行下一次循环。
break # 停止执行整个循环。会跳过 else 子句。
pass # 是为了保持程序结构的完整性。一般用做占位语句,不做任何事情。
标签:enc state python cas bsp 缩进 表达 cond title
原文地址:https://www.cnblogs.com/yutb/p/10811468.html