【Python操作基础】系列——While语句用法,建议收藏!
该篇文章首先利用Python展示了使用While语句的基本用法以及其注意事项,同时展示了Pass语句的含义和作用。
1 基本用法
运行程序:
i=1 sum=0 while(i<=100): sum=sum+i i+=1 print(sum)
运行结果:
5050
2 While语句的注意事项
from IPython.core.interactiveshell import InteractiveShell InteractiveShell.ast_node_interactivity = “all” ##执行多输出
i=1 sum=0 while(i<=10): sum=sum+i i+=1 if i6: continue if i9: break print(i,sum) else: print(“here is else”)
i=1 sum=0 while(i<=10): sum=sum+i i+=1 print(i,sum) else: print(“here is else”)
3 Pass语句含义
运行程序:
a=10 b=11 if(a<=b): #此处不能写空行 else: print(b)
4 Pass语句作用
运行程序:
a=10 b=11 if(a<=b): pass #表示空语句 else: print(b)