Python之while循环

Posted wang-jie-devops

tags:

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

基本语法:

while  condition:

    code...

示例:

1.输出1到10,不包括7

n = 1
while n < 11:
     if n == 7:
         pass
     else:
         print(n)
     n = n+1

2.计算1-100所有数之和

n = 1
s = 0
while n < 101:
    s = s + n
    n = n + 1
print(s)

3.计算1-2+3-4+5-6...99

n = 1
s = 0
while n < 101:
    if n % 2 == 0:
        s = s - n
    else:
        s = s + n
    n = n + 1
print(s)

 




















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

python基础之while循环for循环配合breakcontinue,while与elsefor与else

5、Python基础之if条件判断和while循环

Python 之 while循环语句

Python入门教程第57篇 循环进阶之模拟do…while语句

day01:python之while条件循环

Python之while循环