🍉CSDN小墨&晓末:https://blog.csdn.net/jd1813346972
个人介绍: 研一|统计学|干货分享
擅长Python、Matlab、R等主流编程软件
累计十余项国家级比赛奖项,参与研究经费10w、40w级横向
文章目录
- [1 基本用法](#1 基本用法)
- [2 While语句的注意事项](#2 While语句的注意事项)
- [3 Pass语句含义](#3 Pass语句含义)
- [4 Pass语句作用](#4 Pass语句作用)
【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)