Welcome to Westonci.ca, where finding answers to your questions is made simple by our community of experts. Join our platform to connect with experts ready to provide precise answers to your questions in various areas. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.
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)
