While 循環:
例:1
no = 1 while no<=5: print(no, end=' ') no+=1
輸出:
1 2 3 4 5
範例:2
1) 1 2 3 4 5 6 7 8 9 10
2) 1 2 3 4 5 6 7 8 9 10
3) 10 9 8 7 6 5 4 3 2 1
4) 1 3 5 7 9
5) 2 4 6 8 10
6) 3 6 9
#1 2 3 4 5 6 7 8 9 10 no = 1 while no<=10: print(no, end=' ') no+=1 print(end='\n') # 10 9 8 7 6 5 4 3 2 1 no = 10 while no>=1: print(no, end=' ') no-=1 print(end='\n') # 1 3 5 7 9 no = 1 while no<=10: print(no, end=' ') no+=2 print(end='\n') #2 4 6 8 10 no=2 while no<=10: print(no, end=' ') no+=2 print(end='\n') # 3 6 9 no = 3 while no<=10: print(no, end=' ') no+=3
輸出:
1 2 3 4 5 6 7 8 9 10 10 9 8 7 6 5 4 3 2 1 1 3 5 7 9 2 4 6 8 10 3 6 9
範例:3(使用 *)
no = 1 while no<=5: print(no*3, end=' ') no+=1
輸出:
3 6 9 12 15
範例:4(5張桌子-->1*5=5最多10*5=50)
輸入可以用兩種方式給出,
輸入:1
no = 1 while no<=10: print(no,"*5=",no*5, end='\n') no+=1
輸入:2(使用 f 字串格式的字串文字)
--> 格式化字串文字或 f 字串是以 f 或 F 為前綴的字串文字。
-->使用大括號{}表示。
-->它用於查看 {} 內的值、表達式或實例,並將它們替換為變數值或結果。
no = 1 while no<=10: result=no*5 print(f'{no} * 5 = {result}') no+=1
兩個輸入的輸出:
1 * 5 = 5 2 * 5 = 10 3 * 5 = 15 4 * 5 = 20 5 * 5 = 25 6 * 5 = 30 7 * 5 = 35 8 * 5 = 40 9 * 5 = 45 10 * 5 = 50
範例:5
#1 2 3 4 5 5 4 3 2 1 no = 1 while no <= 5: print(no, end=" ") no += 1 no = 5 while no > 0: print(no, end=" ") no -= 1
輸出:
1 2 3 4 5 5 4 3 2 1
範例:6
#1 3 5 7 9 2 4 6 8 10 no = 1 while no<=10: print(no, end = ' ') if no==9: no = 0 no+=2
輸出:
1 3 5 7 9 2 4 6 8 10
以上是Python Day-循環的詳細內容。更多資訊請關注PHP中文網其他相關文章!