如何使該程序起作用?數字和用戶輸入的和產品的總和
問題
我需要設置多少浮數輸入用戶可以進入。然後將每個輸入乘以一個數字並對每個產品進行求和。
代碼
userInput = int(input("Enter how many numbers you would like to input? "))
numList = [None] * userInput
for x in range(userInput):
numList[x] = float(input("What is the value of number 1? "))
multiplicand = int(input("Enter the multiplicand: "))
for y in numList:
product = multiplicand * y
sumOfproduct = sum(product)
print(sumOfproduct)
輸出應該像這樣:
回車多少個號碼,你想輸入? 3
數字1的值是多少? 2
2號的價值是什麼? 3
3號的值是多少? 1
輸入被乘數:5
的總價值爲:30
請不要污衊你的問題。這裏的問題旨在幫助未來的遊客*遇到同樣的問題,而不僅僅是你。 –