A restaurant recorded the ages of customers on two separate days. You are going to write a program to find the maximum age of a customer.

What is the missing line of code?

customerAges = [13, 3, 11, 24, 35, 25, 15, 18, 1]

maximum = customerAges[0]
for item in customerAges: ____

maximum = item

print("Maximum value:",maximum)

A restaurant recorded the ages of customers on two separate days You are going to write a program to find the maximum age of a customer What is the missing line class=
Q&A Education