What would be the best way to find the index of a specified character in a list containing multiple characters?
As suggested by others, you can use index. Other than that you can use enumerate to get both the index as well as the character
index
enumerate
character
for position,char in enumerate(['a','b','c','d']): if char=='b': print position