Python在列表中打印变量名称

时间:2017-08-08 13:12:57

标签: python list

如何从列表中打印变量名而不是值?我可以遍历列表并打印下面的值,但我想知道如何遍历列表并打印变量名称?

a = 'Red'
b = 'Green'
c = 'Blue'

mylist = [a, b, c]
for i in mylist:
    print(i)

当前输出:

Red
Green
Blue

期望的输出:

a
b
c

0 个答案:

没有答案