AvailCode
0
Q:

remove words from set if in list python site:stackoverflow.com

query = 'What is hello'
stopwords = ['what', 'who', 'is', 'a', 'at', 'is', 'he']
querywords = query.split()

resultwords  = [word for word in querywords if word.lower() not in stopwords]
result = ' '.join(resultwords)

print(result)
0

New to Communities?

Join the community