python中input函數使用時遇到的問題

今日 在使用input函數時,我是這樣寫的: nums = [] for i in range(1,11): nums.append(float(input("請輸入第",i,"個數字:"))) 然後就報錯了: 、 但是這樣寫就對了: nums = [] for i in range(1,11): nums.append(float(input("請輸入第"+str(i)+"個數字
相關文章
相關標籤/搜索