how to check what character is in position 0 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
>>> myString = 'Position of a character'
>>> myString.find('s')
2
>>> myString.find('x')
-1