python3 流程控制 if for
- 2019 年 12 月 12 日
- 筆記
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