python中while 1表示什麼

ciscopuke發表於2021-09-11

python中while 1表示什麼

1、數字

像while 1,while 2,while -1,while -2,while x,只要x不等於0,就是條件永遠為真,等價於while True。

while 0 等價於 while False。

相關推薦:《》

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。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4369/viewspace-2835850/,如需轉載,請註明出處,否則將追究法律責任。

相關文章