A restaurant recorded the ages of customers on two separate days. you are going to write a program to find the minimum age of a customer. the data is stored in customerages. customerages = [13, 3, 11, 24, 35, 25, 15, 18, 1] what is the missing line? minimum = customerages[0] for item in customerages: minimum = item



Answer :

Other Questions