我試圖讓我可以將每個成本乘以相應的銷售產品數量。例如,1.99 * 10,1.49 * 5等等。另外,我似乎無法弄清楚如何根據列表中的成本打印最昂貴或最便宜的產品的產品名稱。我試着將product_cost中的i與product_sold中的相應i相乘,但答案似乎沒有解決。有沒有人有任何想法如何解決這個問題?由於將兩個列表中的值相乘,然後將它們打印出來python
然而,用下面的代碼,
# product lists
product_names = ["prime numbers", "multiplication tables", "mortgage calculator"]
product_costs = [1.99, 1.49, 2.49]
product_sold = [10, 5, 15]
def report_product():
total = 0
print("Most expensive product:", max(product_costs))
print("Least expensive product:", min(product_costs))
for i in range(len(product_costs)):
total += i * product_sold[i]
print("Total value of all products:", total)
selection = ""
while selection != "q":
selection = input("(s)earch, (l)ist, (a)dd, (r)emove, (u)pdate, r(e)port or (q)uit: ")
if selection == 'q':
break
elif selection == 's':
search_product()
elif selection == "l":
list_products()
elif selection == "a":
add_products()
elif selection == "r":
remove_products()
elif selection == "u":
update_products()
elif selection == "e":
report_product()
else:
print("Invalid option, try again")
print("Thanks for looking at my programs!")
題外話:'如果選擇==「Q」:break'是多餘的,因爲while循環的條件是'而選擇=「q''使得環打破反正 – abccd
u能顯示代碼search_product, list_products,remove_products,update_products,report_product函數.. ?? – shiva