НАПИШИТЕ ПОЖАЛУЙСТА КОД ДЛЯ PYTHON У середовищі програмування створіть проєкт Продаж товару, у якому для введеної кількості проданих одиниць товару, що фіксується кожну годину за зміну (8 год), знаходять підсумкове значення.
Здесь пользователю нужно ввести количество продаж за каждый час (всего 8 часов). Затем он вычислит общую сумму продаж, сложив все продажи, и выведет результат.
sales = []
for i in range(8):
hour_sales = int(input("Enter the number of sales for hour {}: ".format(i + 1)))
Answers & Comments
Здесь пользователю нужно ввести количество продаж за каждый час (всего 8 часов). Затем он вычислит общую сумму продаж, сложив все продажи, и выведет результат.
sales = []
for i in range(8):
hour_sales = int(input("Enter the number of sales for hour {}: ".format(i + 1)))
sales.append(hour_sales)
total_sales = sum(sales)
print("Total sales: ", total_sales)
Контроль:
Enter the number of sales for hour 1: 10
Enter the number of sales for hour 2: 20
Enter the number of sales for hour 3: 30
Enter the number of sales for hour 4: 40
Enter the number of sales for hour 5: 50
Enter the number of sales for hour 6: 60
Enter the number of sales for hour 7: 70
Enter the number of sales for hour 8: 80
Вывод на экран: Total sales: 360