I've got the following code:
hey = ["lol", "hey", "water", "pepsi", "jam"]
for item in hey:
print(item)
Do I display the position in the list before the item, like the following?
1 lol
2 hey
3 water
4 pepsi
5 jam
This is for a homework assignment.