Python3學習筆記-06(循環語句)

1、while循環html 語法:spa while condition: statement_block 例:code a = 1 n = 100 sum = 0 #計算1-100的和 while a <= n: sum += a a += 1 print('1-100的和爲:',sum) 輸出結果以下:htm 1-100的和爲: 5050 注:在Python中沒有d
相關文章
相關標籤/搜索