can you look for a specific character in a specific place in a string in python code example
Example: how to find the location of a character in a string in python
>>> myString = 'Position of a character'
>>> myString.find('s')
2
>>> myString.find('x')
-1