# eg.
if a=b and c=d :
print(a,b,c,d)
elif condition:
pass # pass为执行语句块
else : # 除去限制条件外的所有情况
pass
循环执行
while 循环
# eg.
while (a<10):
pass
else: # (正常结束,此处为a>=10后的情况)
pass
for 循环
# eg.
for 序列变量 in 序列:
pass
else:
pass
———————————————————————————————————————————————————————————————————————————————————
#eg.双重遍历
s = [[96, 69], [77, 88]] # [[]]双重中括号
for i in s:
for j in i:
print(j, end='|') # end修改print函数输出格式,关键字函数
# 输出结果应为为:96|69|77|88
in range函数
in range(start,end,steplength)
包括start,不包括end
默认start:0,默认end:结束,默认steplength:1
(:4:) 等价于(0:4:1)
数值循环条件使用
for i in range (,5): # 可替换为in range(5)
print(i,end = '|')
# 输出结果应为0|1|2|3|4