Page 1 of 1

Write a program that prompts the user to enter the sales (float) for a specific number of days (int) based on the user's

Posted: Sun Jul 03, 2022 12:01 pm
by answerhappygod
Write a program that prompts the user to enter the sales (float)for a specific number of days (int) based on the user's input. Addeach day's sales to a list. After the user has inputted the salesfor the specific number of days, display the following informationrelated to the sales data using the list functions described in thetextbook (eg. min, max, sum): minimum sales maximum sales totalsales average sales Make sure that all output is formatted asfixed-point numbers with 2 decimal places using f-strings.