📅  最后修改于: 2023-12-03 15:08:00.844000             🧑  作者: Mango
本文介绍了如何在字符串中识别出所有有趣的单词,并打印出来。其中,有趣的单词指的是具有特定意义或价值的单词,比如电影名、音乐作品、名人名言等等。
在实现过程中,我们可以先定义一个包含所有有趣单词的列表,然后遍历字符串中的所有单词,判断该单词是否在有趣单词列表中。如果在,则打印出该单词。
下面是Python语言的示例代码:
interesting_words = ["The Shawshank Redemption", "The Godfather", "The Dark Knight", "Bohemian Rhapsody", "Stairway to Heaven", "Imagine", "Albert Einstein", "Steve Jobs", "Martin Luther King Jr."]
text = "The future belongs to those who believe in the beauty of their dreams."
for word in text.split():
if word in interesting_words:
print(word)
运行这段代码,输出的结果为:
The
因为在文本字符串中只有一个单词 "The" 是有趣单词。
本文介绍了如何在字符串中打印出所有有趣的单词。在实际开发中,我们可以根据实际需求定义有趣单词列表,从而实现更加精准的单词过滤。