Respuesta :
Answer:
The solution code is written in Python 3
- input_char = input("Enter a character: ")
- sentence = input("Enter a sentence: ")
- word_list = sentence.split(" ")
- for word in word_list:
- for c in word:
- if(c == input_char):
- print(word)
- break
Explanation:
Firstly, use the input function to get a input character and sentence from user (Line 1 - 2)
Next, use the split method to divide the sentence into a list of individual words using single space as the delimiter (Line 4).
Create an outer for loop to traverse each word in the word_list and create another inner loop to traverse each character in the word and check if there is any character match with the input character. If so print the word and terminate the inner loop and proceed to the next round of the outer loop.
After finishing the loop, all the relevant words will be printed.