pass在if中是停止if成立后的操作。
如
num=1
while num<=100:
if num==50:
pass #当作先占位
elif num>=60 and num<=80:
print(num*num)
num+=1
直接往下运行
等于什么都不干!!!!!!!!!!
继续往下走