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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python中for迴圈和while迴圈有什麼區別?Python入門教程PythonWhile
- def在python中表示什麼Python
- python裡字元表示什麼意思Python字元
- flutter中的=>表示什麼Flutter
- python中使用什麼表示註釋Python
- python中的while...elsePythonWhile
- python while/forPythonWhile
- Python 為什麼不設計 do-while 迴圈結構?PythonWhile
- Python表示式由什麼構成?Python基礎學習!Python
- 【Python基礎知識】Python中的while語句PythonWhile
- Python 中的for,if-else和while語句PythonWhile
- Python中的if、while、for 語法及例項PythonWhile
- 四、python之 if while forPythonWhile
- python while迴圈PythonWhile
- python_while truePythonWhile
- python中loc是什麼Python
- python中len什麼意思Python
- python-while迴圈PythonWhile
- [20180619]fsc表示什麼.txt
- python中global是什麼意思?Python
- python中mat是什麼意思?Python
- python中return是什麼意思?Python
- python中的class代表什麼Python
- python中的input是什麼Python
- python中的字典是什麼Python
- python 中的 for-else 和 while-else 語句PythonWhile
- [20190910]索引分支塊中TERM使用什麼字元表示.txt索引字元
- python中Matplotlib是什麼?怎麼用?Python
- 什麼是Lambda表示式?有什麼優點?
- 國民度No.1,Python到底做了什麼?Python
- python:運用while迴圈怎麼進行終止PythonWhile
- Python的流程控制 - whilePythonWhile
- 什麼是正規表示式?
- 什麼是正規表示式
- Python中的arange是什麼?和range有什麼不同?Python
- Python中\t代表什麼?如何使用?Python
- python中collections.Counter是什麼?Python
- Python中的rad是什麼意思?Python