python3 流程控制 if for

2019-12-12 11:15:17 浏览数 (1)

if x: x else: y

if x: x elif y: y else: xx

False:

False 、None 、0 、””、()、[]、{}

pass

image.png

while 循环

image.png

for in循环

image.png

遍历元组和列表、字典

image.png

image.png

循环 else

image.png

image.png

[]

image.png

b_list=[x*x for x in a_range if x%2==0]

zip

reversed sorted

控制循环 break

image.png

continue

image.png

输出99乘法表

image.png

将数字转成人民币

0 人点赞