在单词列表后面的字符串中查找单词

时间:2014-02-12 01:37:05

标签: python string split token

我的朋友和我正在研究单词及其含义,我需要帮助才能获得我们想要了解的单词。我有一个单词列表,我们在命令行中键入,告诉计算机我们想要的单词的含义或历史。我的问题是找出我们输入的单词。到目前为止,这是我的代码:

Meaning = {"Meaning", "define", "history"}
text1  = raw_input("Text: ")
tokens = commands.lower().split()
if Meaning.intersection(tokens):
    #Here is the problem, because i don't know what word we might type
    #so i need it to check the word after the Meaning. How can i do this?

我正在使用该程序键入一个网站并获取有关该单词的信息,因此我无法添加单词和定义,因为要知道每个单词都太难了。我怎么能在意思之后得到这个词呢?谢谢。

1 个答案:

答案 0 :(得分:1)

将字典设置为成对字符集。

terms = {'word1': 'meaning', 'word2': 'othermeaning'}

print terms['word1']