python中while1表示什么

python

1、数字

像while 1,while 2,while -1,while -2,while x,只要x不等于0,就是条件永远为真,等价于while True。

while 0 等价于 while False。

相关推荐:《Python相关教程》

2、其他变量,如字符串, 列表, 元组等

while '1',while [1, 2],while (1, 2),while x,只要len(x)>0,就是条件永远为真,等价于while True。

while '',while [],while (),while x,只要len(x)=0,就是条件永远不为真,等价于 while False。

以上是 python中while1表示什么 的全部内容, 来源链接: utcz.com/z/520888.html

回到顶部