
Dinesh Murugan
146 PointsWith the same program, I am getting the groceries listed but without an index(Numbers)
groceries = ['roast beef', 'cucumbers', 'lettuce', 'peanut butter', 'bread', 'dog food']
for index, item in enumerate(groceries): print(f'{index}. {item}')
(This the program I wrote )
1 Answer

Josh Keenan
19,393 PointsI am unable to replicate your error, as long as your print statement is within the for loop as I did have to move that into it.