python_base_while循环

Posted 小屁屁屁屁妞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_base_while循环相关的知识,希望对你有一定的参考价值。

在程序的三大流程,一共有三种流程方式:

1、顺序---从上向下,顺序执行代码
2、分支---根据条件判断,决定执行代码的 分支
3、循环---让 特定代码 重复 执行

除非需求的特殊要求,否则循环的计数都从0开始
i=0

while i<5:
print("hello python")

i+=1
print("循环结束后,i = %d " %i)


输出结果:

hello python
hello python
hello python
hello python
hello python
循环结束后,i = 5

计算0-10 之间的所有数字的累积求和结果。

#定义一个整数的变量记录循环的次数
i=0

#定义最终结果的变量
result=0
#开始循环
while i <=100:

print(i)
result +=i
i+=1

print("0-100的求和结果是%d" %result)

输出结果:
0
1
2
3
4
5
6
7
8
9
10
0-100的求和结果是55


 计算0-10 之间的所有数字的累积求和结果。

#定义一个记录最终结果的变量
result=0
i=0


while i <= 10:
#判断变量i中的数值,是否是一个偶数
if i % 2 ==0:
print(i)

result+=i
i+=1
print("1-10的偶数累加结果是%d" %result)

输出结果:
0
2
4
6
8
10
1-10的偶数累加结果是30

 










































































以上是关于python_base_while循环的主要内容,如果未能解决你的问题,请参考以下文章

Shell脚本之while循环

00011_循环语句while

循环语句和数组

Python while 循环使用实例

while语句

循环链表