20190810—while函数用法

Posted yssshiny

tags:

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

 1 import random,time
 2 list1=0
 3 list2=0
 4 for i in range(1,4):
 5     print(-------------当前是第 + str(i) +  + -------------)
 6     time.sleep(2)
 7     list1=random.randint(0,100)
 8     list2=random.randint(0,100)
 9     a1=random.randint(0,50)
10     a2=random.randint(0,50)
11     while list1>0 and list2>0:
12         # while执行循环体,并会多次重复测试直到测试为假后才执行循环后的其它语句。
13         list1=list1-a2
14         list2=list2-a1
15         print(list1剩余数值:+str(list1))
16         print(list2剩余数值: + str(list2))

 

以上是关于20190810—while函数用法的主要内容,如果未能解决你的问题,请参考以下文章

c++字符串替换中while和strcpy具体用法

PHP中foreach函数用法?

sstream头文件-getline 函数 和 stringstream函数 和string的常见用法

浅谈assert()函数的用法

请教peek()与eof()的用法

c语言中while 、for、switch、case的用法?