Answers for "how to select a letter in a string python"

4

how to get any letter of a string python

Random = "Whatever"#you can put anything here
words2 = Random.split(" ")
print('number of letters:')#you can delete this line...
print(len(Random))#and this one. these lines just Tell you how many 
#letters there are
while True:#you can get rid of this loop if you want
    ask = int(input("what letter do you want?"))
    print(Random[ask-1])
Posted by: Guest on April-27-2020
0

python select certain characters from string

#you can specify the index of a specific character
example = 'example'
print(example[2])
Posted by: Guest on June-24-2021

Code answers related to "how to select a letter in a string python"

Python Answers by Framework

Browse Popular Code Answers by Language