python基础——if语句/条件控制
程序员文章站
2022-03-15 22:34:42
...
Python 条件语句是通过一条或多条语句的执行结果(True 或者 False)来决定执行的代码块。
执行过程为:
代码一般形式为:
if condition_1:
statement_block_1
elif condition_2:
statement_block_2
else:
statement_block_3
#Python 中用 elif 代替了 else if,所以if语句的关键字为:if – elif – else。
代码注释:
如果 “condition_1” 为 True 将执行 “statement_block_1” 块语句
如果 “condition_1” 为False,将判断 “condition_2”
如果"condition_2" 为 True 将执行 “statement_block_2” 块语句
如果 “condition_2” 为False,将执行"statement_block_3"块语句
注意事项:
1、每个条件后面要使用冒号 :,表示接下来是满足条件后要执行的语句块。
2、使用缩进来划分语句块,相同缩进数的语句在一起组成一个语句块。
3、在Python中没有switch – case语句。
下面的gif详细展示了变量a通过循环和条件控制时每一步的变化值:
var1 = 100
if var1:
print ("1 - if 表达式条件为 true")
print (var1)
var2 = 0
if var2:
print ("2 - if 表达式条件为 true")
print (var2)
print ("Good bye!")
输出结果:
1 - if 表达式条件为 true
100
Good bye!
可以看到与c等不同的是,python没有用{}将不同执行语句包起来,因为python使用缩进来划分语句块,这一点很重要!
所以不用担心if嵌套的问题,编译器会通过缩进自动判断语句块。
上一篇: 旅游