What would be the best way to find the index of a specified character in a list containing multiple characters?
Probably the index method?
index
a = ["a", "b", "c", "d", "e"] print a.index("c")