gpt4 book ai didi

Python如何获取变量名的值?

转载 作者:行者123 更新时间:2023-11-28 20:55:19 35 4
gpt4 key购买 nike

<分区>

例如,我们将三门类(class)的分数存储在LIST中。

English, Maths, Physics = 89, 92, 93
LIST = [English, Maths, Physics]
for i in range(len(LIST)):
print(LIST[i])

我希望打印样式类似于English, 89Maths, 92Physics, 93。这是定义另一个列表 LIST_name

的解决方案
English, Maths, Physics = 89, 92, 93
LIST = [English, Maths, Physics]
LIST_name = ['English', 'Maths', 'Physics']
for i in range(len(LIST)):
print(LIST_name[i], LIST[i])

我想知道是否有内置函数或其他一些技巧可以帮助我直接将 English 转换为 "English",而无需定义 LIST_name ?如果是这样,怎么办?正如 Barmar 在下面评论的那样,我正在寻找的是如何从一个值转到它来自的变量的名称?

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com