Debug Exercise 3 (Chapter 7)
# Design a program that asks the user to enter a store's sales for each day
# of the week. The amounts should be stored in a list. Use a loop to
# calculate the total sales for the week and display the result.
# Note: the result should be formatted with two decimal places
def main():
daily_sales = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
days_of_week = ['Sunday', 'Monday', 'Tuesday', 'Wednesday',
'Thursday', 'Friday', 'Saturday']
for i in range(7):
daily_sales[i] = float(input('Enter the sales for ' days_of_week[i] + ': '))
for number in daily_sales:
total_sales += number
print ('Total sales for the week:



, total_sales, sep='')
main()


Answer :