Привет, надеюсь, это поможет.
words = ['Random', 'Words', 'hello'] #Creating a list
from random import choice # importing choice
random_letter = choice(words)[0] #getting the random word and then getting the first letter by indexing
print(random_letter)# printing output