Encontre o índice de charechtar em string python

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