标签: python dictionary reverse
我想创建一个能够将一个集群或一组单词映射到单个单词或字符串的数据结构,它可以被认为与字典在python中的作用相反。
答案 0 :(得分:2)
您可以使用常规字典:
targetword = "good" wordmap = { "best": targetword, "positive": targetword, "awesome": targetword, "fantastic": targetword }