+ 2
Hey guys, can you help in one program? I don't have any idea about this program.
Write a python function to remove a given word from a string and strip it at the same time.
1 Answer
+ 3
You can use the split function to create a list of words from a string.
You can use the filter function, or a list comprehension with a condition, to get only those words which don't match the given word.
You can use the join function to combine the remaining words to a single string.