執行環境: python 3
這個是個有趣的部分,因為沒有標準答案,所以中間對list使用了sort()
所以最小值就是 inputs[0],當然最大值是list最後乙個值,也就是 inputs[-1:][0]
與書上寫的25行剛剛好
print("type integers, each followed by enter; or just enter to finish")
total = 0
count = 0
inputs =
while true:
line = input("integer:")
if line:
try:
number = int(line)
inputs += [number]
except valueerror as err:
print(err)
continue
total += number
count += 1
inputs.sort()
else:
break
if count:
print("nmbers:", inputs)
print("count=", count, "total=", total, "lowest=", inputs[0], "highest=", inputs[-1:][0], "mean=", total/count)
Python 學習歷程
每天乙個小知識 python字典簡介 1 訪問字典中的值 in 1 d tom out 1 23 2 修改字典 向字典中增加新內容 d amy yong 刪除字典中的某個元素 del d tom 清空字典中的元素 d.clear 1 方法一 d with open d dic.csv w as f ...
Python學習歷程
python range 函式用於建立乙個整數列表,多用於for迴圈中。基本形式 range start,stop,step 例如 range 0,5 表示建立乙個列表 0,1,2,3,4 不包括5 range 5 則表示建立乙個列表 0,1,2,3,4,5 包括5 range 0,20,5 表示建...
Python 學習歷程
第一課 平台搭建 一.windows系統下安裝python 1.cmd命令提示符 1.開始 執行cmd 2.位址列輸入cmd 3.自定義右擊選單 4.shift 右擊 2.安裝python直譯器 官網 downloads 檔案 python 3.9.1 amd64.exe安裝時注意勾選路徑 驗證 p...