expr_true_suite
代码块只有当条件表达式 expression
结果为真时才执行,否则将继续执行紧跟在该expression
条件表达式可以通过布尔操作符 and
, or
和not
实现多重条件判断。if expression: expr_true_suite if 2 > 1 and not 2 > 3: print('Correct Judgement!') # Correct Judgement!
if
语句支持嵌套,即在一个if
语句中嵌入另一个if
语句,从而构成不同层次的选择结构。Python 使用缩进而不是大括号来标记代码块边界,因此要特别注意 else
的悬挂问题。if expression: expr_true_suite else expr_false_suite
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('输入错误!')
assert
这个关键词我们称之为“断言”,当这个关键词后边的条件为 False 时,程序自动崩溃并抛AssertionError
的异常。assert 3 > 7 # AssertionError
while
语句最基本的形式包括一个位于顶部的布尔表达式,一个或多个属于 while
代码块的缩进语句。while
循环的代码块会一直循环执行,直到布尔表达式的值为布尔假。<、>、==、!=、in、not in
等运算符,仅仅给出数值之类的条件,也是可以的。当while
后写0
时,视为假值,不执行循环体。也可以写入 str、list
或任何序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("游戏结束,不玩儿啦!")
当 while
循环正常执行完的情况下,执行else
输出,如果while
循环中执行了跳出循环的语句,比如 break
,将不执
行 else
代码块的内容。
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
for
循环是迭代循环,在Python中相当于一个通用的序列迭代器,可以遍历任何有序序列,如 str、list、tuple
等,也dict
。for 迭代变量 in 可迭代对象: 代码块 for i in 'ILoveLSGO': print(i, end=' ') # 不换行输出 # I L o v e L S G O
当 for
循环正常执行完的情况下,执行 else
输出,如果 for
循环中执行了跳出循环的语句,比如 break
,将不执
行else
代码块的内容,与while - else
语句一样。
for 迭代变量 in 可迭代对象: 代码块 else: 代码块
range([start,] stop[, step=1])
step=1
表示第三个参数的默认值是1。range
这个BIF的作用是生成一个从 start
参数的值开始到 stop
参数的值结束的数字序列,该序列包含start
的stop
的值。for i in range(1, 10, 2): print(i) # 1 # 3 # 5 # 7 # 9
enumerate(sequence, [start=0])
enumerate()
与 for
循环的结合使用
用 enumerate(A)
不仅返回了A
中的元素,还顺便给该元素一个索引值 (默认从 0 开始)。此外,用
enumerate(A, j)
还可以确定索引起始值为j
。
break
语句可以跳出当前所在层的循环。
continue
终止本轮循环并开始下一轮循环。
for i in range(10): if i % 2 != 0: print(i) continue i += 2 print(i) # 2 # 1 # 4 # 3 # 6 # 5 # 8 # 7 # 10 # 9
pass
语句的意思是“不做任何事”,如果你在需要有语句的地方不写任何语句,那么解释器会提示出错,而 pass
语句就pass
是空语句,不做任何操作,只起到占位的作用,其作用是为了保持程序结构的完整性。尽管 pass
语句不做任何操pass
语句,让代码可以正常运行。def a_func(): # SyntaxError: unexpected EOF while parsing def a_func(): pass
列表推导式
[ expr for value in collection [if condition] ]
x = [[i, j] for i in range(0, 3) for j in range(0, 3)] print(x) # [[0, 0], [0, 1], [0, 2], [1, 0], [1, 1], [1, 2], [2, 0], [2, 1], [2, 2]] x[0][0] = 10 print(x) # [[10, 0], [0, 1], [0, 2], [1, 0], [1, 1], [1, 2], [2, 0], [2, 1], [2, 2]]
元组推导式
( expr for value in collection [if condition] )
a = (x for x in range(10)) print(a) # <generator object <genexpr> at 0x0000025BE511CC48> print(tuple(a)) # (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
字典推导式
{ key_expr: value_expr for value in collection [if condition] }
b = {i: i % 2 == 0 for i in range(10) if i % 3 == 0} print(b) # {0: True, 3: False, 6: True, 9: False}
集合推导式
{ expr for value in collection [if condition] }
c = {i for i in [1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 1]} print(c) # {1, 2, 3, 4, 5, 6}