write a program that reads a character, then reads in a list of words. the output of the program is every word in the list that contains the character at least once. assume at least one word in the list will contain the given character.

Respuesta :

Answer:

Refer to the code below

Explanation:

# Input character and words

char = input()

words = input()

# Splitting the words as an array

words = words.split()

# Traverse over the array to see if the character is present in a word

for word in words:

   if char in word:

       print(word)

ACCESS MORE
EDU ACCESS