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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- flutter中的=>表示什麼Flutter
- Python中for迴圈和while迴圈有什麼區別?Python入門教程PythonWhile
- python裡字元表示什麼意思Python字元
- def在python中表示什麼Python
- python中使用什麼表示註釋Python
- 為什麼谷歌的JSON響應以while(1);開頭?谷歌JSONWhile
- python中的while...elsePythonWhile
- Python 為什麼不設計 do-while 迴圈結構?PythonWhile
- python while/forPythonWhile
- Python表示式由什麼構成?Python基礎學習!Python
- python中len什麼意思Python
- python中loc是什麼Python
- Python中的if、while、for 語法及例項PythonWhile
- Python 中的for,if-else和while語句PythonWhile
- python中的class代表什麼Python
- python中的input是什麼Python
- python中的字典是什麼Python
- python中return是什麼意思?Python
- python中mat是什麼意思?Python
- python中global是什麼意思?Python
- 【Python基礎知識】Python中的while語句PythonWhile
- 國民度No.1,Python到底做了什麼?Python
- Python中的arange是什麼?和range有什麼不同?Python
- python中Matplotlib是什麼?怎麼用?Python
- python while迴圈PythonWhile
- python_while truePythonWhile
- 四、python之 if while forPythonWhile
- Python中的mechanize模組是什麼?Python
- python中collections.Counter是什麼?Python
- python中flake8是什麼Python
- Python中的作用域是什麼Python
- Python中\t代表什麼?如何使用?Python
- Python中模組是什麼?Python有哪些模組?Python
- python 中的 for-else 和 while-else 語句PythonWhile
- 什麼是python?python有什麼用途?Python
- python 判斷一個表示式是什麼布林型別bool()Python型別
- js中的正規表示式(1)JS
- Python中異常是什麼意思?與錯誤有什麼區別?Python