Comment trouver l'emplacement d'un personnage dans une chaîne en python

>>> myString = 'Position of a character'
>>> myString.find('s')
2
>>> myString.find('x')
-1
Obedient Ox