# Ask the user for daily sales figures for a full week (Sunday – Saturday) # Store these values in a list and print them out # create list with 7 slots - all 0's sales = [0] * 7 for i in range(0,len(sales)): prompt = "Enter sales for Day #" + str(i+1) + ": " sale = int(input(prompt)) sales[i] = sale print("Sales for the week: ", sales)