python3条件控制之if语句
Python 条件语句是通过一条或多条语句的执行结果(True 或者 False)来决定执行的代码块。
Python中if语句的一般形式如下所示:
if condition_1:
statement_block_1
elif condition_2:
statement_block_2
else:
statement_block_3
如果 "condition_1" 为 True 将执行 "statement_block_1" 块语句
如果 "condition_1" 为False,将判断 "condition_2"
如果"condition_2" 为 True 将执行 "statement_block_2" 块语句
如果 "condition_2" 为False,将执行"statement_block_3"块语句
Python 中用 elif 代替了 else if,所以if语句的关键字为:if – elif – else。
注意:
1、每个条件后面要使用冒号 :,表示接下来是满足条件后要执行的语句块。
2、使用缩进来划分语句块,相同缩进数的语句在一起组成一个语句块。
3、在Python中没有switch – case语句。
举个栗子:
a=3
b=3
if a>b:
print ("a大于b")
elif a<b:
print(“a小于b”)
else:
print(“a等于b”) #输出成功
python3条件控制之if嵌套
if 嵌套
在嵌套 if 语句中,可以把 if...elif...else 结构放在另外一个 if...elif...else 结构中。
if 表达式1:
语句1
if 表达式2:
语句2
elif 表达式3:
语句3
else:
语句4
elif 表达式4:
语句5
else:
语句6
举个栗子:
n=9
if n%2==0: #条件表达式1
if n%3==0: #条件表达式2
print ("n可以整除 2 和 3")
else:
print ("n可以整除 2,但不能整除 3")
else:
if n%3==0: #条件表达式3
print ("n可以整除 3,但不能整除 2")
else:
print ("n不能整除 2 和 3")
网友评论