📅  最后修改于: 2022-03-11 14:46:12.201000             🧑  作者: Mango
common_words = frozenset(("if", "but", "and", "the", "when", "use", "to", "for"))
title = "When to use Python for web applications"
title_words = set(title.lower().split())
keywords = title_words.difference(common_words)
print(keywords)