01. 条件语句
if 系列的条件语句
1. if 语句
# 语法
if expression:
expr_true_suite
if 语句的 expr_true_suite
代码块只有当条件表达式 expression
结果为真时才执行,否则将继续执行紧跟在该代码块后面的语句。
- 单个 if 语句中的
expression
条件表达式可以通过布尔操作符and
,or
和not
实现多重条件判断。
# 示例
if 2 > 1:
print("Hello World!") # Hello World!
如果 if 后面跟 True,那么该条件语句为真,执行下面的语句。
# 示例
if True:
print("hello world!") # hello world!
2. if - else 语句
# 语法
if expression:
expr_true_suite
else:
expr_false_suite
解释:如果 if 语句的条件表达式结果布尔值为假,那么程序将执行 else 语句后的代码。
# 示例
money = int(input("你觉得这件衣服多少钱?"))
if money > 100:
print("高了。")
else:
print("你猜的差不多。")
# 你觉得这件衣服多少钱? 60
# 你猜的差不多。
3. if 语句嵌套
if
语句支持嵌套,即在一个if
语句中嵌入另一个if
语句,从而构成不同层次的选择结构。
#示例
hi = 6
if hi > 2:
if hi > 7:
print('好棒!好棒!')
else:
print('切~')
# 无输出
#示例
temp = input("猜一猜小姐姐想的是哪个数字?")
guess = int(temp)
if guess > 8:
print("大了,大了")
else:
if guess == 8:
print("你太了解小姐姐的心思了!")
print("哼,猜对也没有奖励!")
else:
print("小了,小了")
print("游戏结束,不玩儿啦!")
# 猜一猜小姐姐想的是哪个数字?8
# 你太了解小姐姐的心思了!
# 哼,猜对也没有奖励!
# 游戏结束,不玩儿啦!
4. if - elif - else 语句
#语法
if expression1:
expr1_true_suite
elif expression2:
expr2_true_suite
.
.
elif expressionN:
exprN_true_suite
else:
expr_false_suite
elif 语句即为 else if,用来检查多个表达式是否为真,并在为真时执行特定代码块中的代码。
#示例
temp = input('请输入成绩:')
source = int(temp)
if 100 >= source >= 90:
print('A')
elif 90 > source >= 80:
print('B')
elif 80 > source >= 60:
print('C')
elif 60 > source >= 0:
print('D')
else:
print('输入错误!')
# 请输入成绩:99
# A
5. assert 关键词
-
assert
,称之为“断言”,当这个关键词后边的条件为 False 时,程序自动崩溃并抛出AssertionError
的异常。
my_list = ['lsgogroup']
my_list.pop(0)
assert len(my_list) > 0
# AssertionError
解释:pop() 函数用于移除列表中的一个元素(默认最后一个元素),并且返回该元素的值。
- 在进行单元测试时,可以用来在程序中置入检查点,只有条件为 True 才能让程序正常工作。
# 示例
assert 3 > 7
# AssertionError
02. 循环语句
1. while 循环
while
语句最基本的形式包括一个位于顶部的布尔表达式,一个或多个属于while
代码块的缩进语句。
# 语法
while 布尔表达式:
执行语句
while
循环的代码块会一直循环执行,直到遇到布尔值为假的布尔表达式。
- 如果布尔表达式不带有
<、>、==、!=、in、not in
等运算符,仅仅给出数值之类的条件,也是可以的。 - 当
while
后写入一个非零整数时,视为真值,执行循环体;写入0
时,视为假值,不执行循环体。也可以写入str、list
或任何序列,长度非零则视为真值,执行循环体;否则视为假值,不执行循环体。 - 如果 while == True: ,也视为真值,执行循环体。
# 示例
count = 0
while count < 3:
temp = input("猜一猜小姐姐想的是哪个数字?")
guess = int(temp)
if guess > 8:
print("大了,大了")
else:
if guess == 8:
print("你太了解小姐姐的心思了!")
print("哼,猜对也没有奖励!")
count = 3
else:
print("小了,小了")
count = count + 1
print("游戏结束,不玩儿啦!")
# 猜一猜小姐姐想的是哪个数字?8
# 你太了解小姐姐的心思了!
# 哼,猜对也没有奖励!
# 游戏结束,不玩儿啦!
- 布尔表达式返回0,循环终止。
# 示例
string = 'abcd'
while string:
print(string)
string = string[1:]
# abcd
# bcd
# cd
# d
2. while - else 循环
# 语法
while 布尔表达式:
执行语句
else:
执行语句
当while
循环正常执行完的情况下,执行else
输出,如果while
循环中执行了跳出循环的语句,比如break
,将不执行else
代码块的内容。
# 示例
count = 0
while count < 5:
print("%d is less than 5" % count)
count = count + 1
else:
print("%d is not less than 5" % count)
# 0 is less than 5
# 1 is less than 5
# 2 is less than 5
# 3 is less than 5
# 4 is less than 5
# 5 is not less than 5
解释:%d 表示该位置是一个整数值;%后面的内容表示在 %d 位置要放置的内容,类似于一个变量值。还有其他形式的,比如 %s 表示该位置是格式化的字符串、%f 表示该位置是浮点数、%.2f 表示该位置是保留两位小数的浮点数……
# 示例
count = 0
while count < 5:
print("%d is less than 5" % count)
count = 6
break
else:
print("%d is not less than 5" % count)
# 0 is less than 5
3. for 循环
for
循环是迭代循环,在Python中相当于一个通用的序列迭代器,可以遍历任何有序序列,如str、list、tuple
等,也可以遍历任何可迭代对象,如dict
。
# 语句
for 迭代变量 in 可迭代对象:
执行语句
每次循环,迭代变量被设置为可迭代对象的当前元素,提供给代码块使用。
# 示例
for i in 'ILoveLSGO':
print(i, end=' ') # 不换行输出
# I L o v e L S G O
4. for - else 循环
for 迭代变量 in 可迭代对象:
代码块
else:
代码块
当 for 循环正常执行完的情况下,执行 else 输出,如果 for 循环中执行了跳出循环的语句,比如 break ,将不执行 else 代码块的内容,与 while - else 语句一样。