Write a function that takes a whole English sentence as a string and displays:
• List of all the words separated by commas. (Hint: use str.split() function)
• Count of a particular word in that string. (Hint: use str.count(“any_word”) function)
(respectively to be done in python)
Answers
Answered by
0
Explanation:
Count of a particular word in that string. (Hint: use str.count(“any_word”) function)
(respectively to be done in python)donedone
Similar questions