Day 5, Bug Fixing Exercise 2

Explanation

Line 3 was

for i, j in enumerate[menu]:

but it should be
for i, j in enumerate(menu):

enumerate is a function so we need to use round parenthesis, not square brackets.

Recommended Course

Python Mega Course: Learn Python in 60 Days, Build 20 Apps
Learn Python on Udemy completely in 60 days or less by building 20 real-world applications from web development to data science.