How to remove a list of words from a string in Python

1 Answer

0 votes
lst = ["python", "java", "c++"]

_str = 'python c c++ php java c# go'

str_words_lst = _str.split()

stayed_words = [word for word in str_words_lst if word.lower() not in lst]

_str = ' '.join(stayed_words)

print(_str)




'''
run:

c php c# go

'''

 



answered Jul 21, 2022 by avibootz
edited Jul 21, 2022 by avibootz
...