python之自練習小程序(循環)

# 編寫者:songwei # 功能:使用while循環輸出1到10 i = 0 list = [1,2,3,4,5,6,7,8,9,10] while i<10: print(list[i]) i+=1 # 功能:求1-100的全部數的和 sum = 0 for i in range(1,101): sum+=i print("1-100之間的全部數的和 = %d" %
相關文章
相關標籤/搜索