The ABC organics company needs a simple program that their call center will use to enter survey data for a new coffee variety. The program must accept input and return the average rating based on a five-star scale. The output must be rounded to two decimal places. You need to complete the code to meet the requirements. sum = count = done = 0 average = 0.0 while done != -1: rating = XXX if rating == -1: break sum += rating count += 1 average = float(sum / count) YYY + ZZZ What should you insert instead of XX
A. XXX -> float(input('Enter next rating (1-5), -1 for done'))YYY -> print('The average star rating for the new coffee is: 'ZZZ -> format(average, '
B. XXX -> float(input('Enter next rating (1-5), -1 for done'))YYY -> printline('The average star rating for the new coffee is: 'ZZZ -> format(average, '
C. XXX -> print(input('Enter next rating (1-5), -1 for done'))YYY -> print('The average star rating for the new coffee is: 'ZZZ -> format(average, '
D. XXX -> float(input('Enter next rating (1-5), -1 for done'))YYY -> output('The average star rating for the new coffee is: 'ZZZ -> format(average, '
E. XXX -> float(input('Enter next rating (1-5), -1 for done'))YYY -> print('The average star rating for the new coffee is: 'ZZZ -> format(average, '
F. XXX -> input('Enter next rating (1-5), -1 for done')YYY -> print('The average star rating for the new coffee is: 'ZZZ -> format(average, '