Answer:
Step-by-step explanation:
The required program prints words which have an occurrence of an inputted alphabet from a list of given words. The program written in python 3 goes thus :
character = input("Enter a character: ")
#prompts user of character of choice
words = input("Enter the words: ")
#prompts user to enter a list of words
split_words = words.split()
#split the words in the list given
for w in split_words:
#iterate through the splitted words
if character in w:
#if an occurence of the character exists in the word
print(w)
#print the word.
A sample run of the program is attached