How do I print out the index location of each of a python list so that it starts at 1, rather than 0. Here's an idea of what I want it to look like:
blob = ["a", "b", "c", "d", "e", "f"]
for i in blob:
print(???)
Output:
1 a
2 b
3 c
4 d
5 e
What I need to know is how do I get those numbers to show up alongside what I'm trying to print out? I can get a-e printed out no problem, but I can't figure out how to number the list.