python while迴圈
輸出1到100之間的所有奇數和偶數:
num = 1 while num
|
猜年齡遊戲的兩種方法:
age = 50 flag = True while flag: user_input_age = int ( input ( "Age is:" )) if user_input_age = = age: print ( "Yes" ) flag = False elif user_input_age > age: print ( "is bigger" ) else : print ( "is smaller" ) print ( "End" ) age = 50 while True : user_input_age = int ( input ( "Age is:" )) if user_input_age = = age: print ( "Yes" ) break elif user_input_age > age: print ( "is bigger" ) else : print ( "is smaller" ) print ( "End" )
|
break語句和continue語句。
print中的end語句:
#print("hello world.",end="__") # n rn r #print("hello world.",end="__") #print("hello world.",end="__") num1 = 0 while num1
|
輸出#號,指定長高的長方形:
height = int ( input ( "height:" )) width = int ( input ( "width:" )) num_height = 1 while num_height
|
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4692/viewspace-2810955/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- while迴圈以及do while迴圈While
- python-while迴圈PythonWhile
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- while迴圈While
- 15-python之while迴圈PythonWhile
- PHP For & While 迴圈PHPWhile
- python04: while迴圈語句 break continue for in 迴圈PythonWhile
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- Java 迴圈 - for, while 及 do…whileJavaWhile
- Python基礎-While迴圈語句PythonWhile
- Python學習-while迴圈練習PythonWhile
- python基礎 while迴圈練習PythonWhile
- 04流程控制 for迴圈,while迴圈While
- linux while 迴圈LinuxWhile
- while迴圈補充While
- Python中for迴圈和while迴圈有什麼區別?Python入門教程PythonWhile
- Java迴圈結構-for,while及do…whileJavaWhile
- Java while和do while迴圈詳解JavaWhile
- JavaScript中的while迴圈JavaScriptWhile
- Python趣味入門5:迴圈語句whilePythonWhile
- Python的if else 巢狀 和forin while 迴圈Python巢狀While
- 【廖雪峰python入門筆記】while迴圈Python筆記While
- python學習手冊13:while及for迴圈PythonWhile
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- Java 迴圈結構 - for, while 及 do...whileJavaWhile
- c#入門-while迴圈C#While
- java學習之while迴圈JavaWhile
- mysql 中 while 迴圈的用法。MySqlWhile
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- Object-C,迴圈語句for,while,do-whileObjectWhile
- python:運用while迴圈怎麼進行終止PythonWhile
- while迴圈和do迴圈、緩衝區、一維陣列While陣列
- Java入門學習-學習if & else,for迴圈,foreach迴圈,while迴圈的用法。JavaWhile
- C#練習,應用for,while,do-while迴圈C#While
- web前端開發教程-while迴圈Web前端While
- java死迴圈while(true)vsfor(;;)JavaWhile
- while + else 使用,while死迴圈與while的巢狀,for迴圈基本使用,range關鍵字,for的迴圈補充(break、continue、else) ,for迴圈的巢狀,基本資料型別及內建方法While巢狀資料型別
- Java基礎 迴圈語句 for while do.....while語句JavaWhile