0
What's wrong)
Вы создаете программу корзины покупок. Корзина покупок объявляется в виде списка цен, и вам нужно добавить функциональность, чтобы принимать процент скидки в качестве входных данных, рассчитывать сумму скидки и выводить общую стоимость корзины.
4 Antworten
+ 1
cart = [15, 42, 120, 9, 5, 380]
discount = int(input())
total = 0
for x in cart:
x == x-(x*discount/100)
total += x
print (total)
+ 1
cart = [15, 42, 120, 9, 5, 380]
discount = int(input())
count = 0
total = 0
for x in cart:
count += 1
y = x-(x*discount/100)
total += y
print (count, x, y, total, sep="\t")
https://code.sololearn.com/cZu10g71f813
0
Thanks!!! But code does not count the sum of all items...
0
Nothing understand...but thanks)