循环语句while

Posted pakhm

tags:

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

死循环

while 1==1:

  print(‘ok‘)

先判断1是否等于1,如果等于,那么执行print,然后再判断1是否等于1,如果等于,那么执行print,然后再判断1是否等于1,如果等于,那么执行print

while 1==1:

  print(‘ok‘)

print(123)

这样永远执行ok,不执行123

 

while 1!=1:

  print(‘ok‘)

print(123)

这样不输出ok,只输出一次123

 

count=0

while count<10:

  print(‘ok‘)

  count=count + 1 (count += count)

print(123)

这样打印10次ok之后打印1次123

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

关于循环的整理

shell编程之case分支语句,for循环语句和while循环语句

00011_循环语句while

00013_循环语句do...while

shell脚本while循环语句

循环语句