1Random = "Whatever"#you can put anything here
2words2 = Random.split(" ")
3print('number of letters:')#you can delete this line...
4print(len(Random))#and this one. these lines just Tell you how many
5#letters there are
6while True:#you can get rid of this loop if you want
7 ask = int(input("what letter do you want?"))
8 print(Random[ask-1])