trouver l'index charchtar dans la chaîne python

myString = 'Position of a character'
myString.find('s')
# 2
myString.find('x')
# -1
Evil Eagle