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。