Respuesta :
Answer:
c = input("Enter a character: ")
words = input("Enter the words: ")
lst = words.split()
for w in lst:
if c in w:
print(w)
Explanation:
Ask the user for the character and words
Take each word in the words and put them in a list using split method
Create a for loop that iterates through the lst
Inside the loop, check is a word in the lst contains the given character. If it does, print the word
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
Learn more : https://brainly.com/question/15707582
