how to make a python program find the location of a single letter through a string 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