python 循環語句while

""" while 條件語句:     滿足條件執行的語句 else:     不滿足條件執行的語句 """   # 1. 1+2+3+.....+100 # i+=1  i=i+1 sum = 0 i = 1 while  i <=100:     sum += i     i += 1 print(sum)   # 2. 把用戶登陸的代碼for循環部分改寫爲while循環; trycount
相關文章
相關標籤/搜索