Python——while循環語句及練習

一.while語句 1.基本格式 while 條件(): 條件滿足時,做的事情1 條件滿足時,做的事情2 print(‘hello python’) #1.定義一個變量,記錄循環次數 i = 1 #2.開始循環 while i <= 3: #循環內執行的動作 print(‘hello python’) #處理計數器 i += 1 2.練習 求和 while死循環 while True: print
相關文章
相關標籤/搜索