how to find letter in string python code example
Example 1: 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
Example 2: how to get any letter of a string python
Random = "Whatever"
words2 = Random.split(" ")
print('number of letters:')
print(len(Random))
while True:
ask = int(input("what letter do you want?"))
print(Random[ask-1])
Example 3: find character in python
banana = "banana"
banana.find("a")
banana.find("a",2)