《Python編程》第四章部分課後練習題

#4-3 數到20:python 代碼:code #4-3 數到20 for num in range(1, 21): print(num) 輸出:passthree #4-5 計算1~1 000 000的總和:it 代碼:ast #4-5 計算1~1 000 000的總和 import time nums = list(range(1, 1000001)) print(min(nums))
相關文章
相關標籤/搜索