一个数据结构,其中键作为单词的集合,值作为单个单词或字符串

时间:2016-05-11 09:18:09

标签: python dictionary reverse

我想创建一个能够将一个集群或一组单词映射到单个单词或字符串的数据结构,它可以被认为与字典在python中的作用相反。

1 个答案:

答案 0 :(得分:2)

您可以使用常规字典:

targetword = "good"
wordmap = {
    "best": targetword,
    "positive": targetword,
    "awesome": targetword,
    "fantastic": targetword
}