将字符串转换为变量名称

将字符串转换为变量名称

我有绳子。就像“水牛”

x='buffalo'

我想把这个字符串转换成一些变量名,

buffalo=4

不仅仅是这个例子,我希望将任何输入字符串转换为某个变量名。我应该怎么做(在python中)?


波斯汪
浏览 511回答 3
3回答

喵喵时光机

x='buffalo'    exec("%s = %d" % (x,2))在此之后,您可以通过以下方法进行检查:print buffalo作为输出,您将看到:2

互换的青春

我知道,这是在python中创建动态变量的最佳方法。my_dict = {}x = "Buffalo"my_dict[x] = 4我发现了一个类似的问题,但不是同一个问题从用户输入创建动态命名变量

慕莱坞森

您可以使用字典来跟踪键和值。比如说.。dictOfStuff = {} ##Make a Dictionaryx = "Buffalo" ##OR it can equal the input of something, up to you.dictOfStuff[x] = 4 ##Get the dict spot that has the same key ("name") as what X is equal to. In this case "Buffalo". and set it to 4. Or you can set it to  what ever you likeprint(dictOfStuff[x]) ##print out the value of the spot in the dict that same key ("name") as the dictionary.字典和现实生活的字典非常相似。你有一个词,你有一个定义。你可以查找单词并得到定义。所以在这个例子中,你有“水牛”这个词,它的定义是4,它可以和任何其他的词和定义一起工作。先把它们放在字典里就行了。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python