标签: python list
如何从列表中打印变量名而不是值?我可以遍历列表并打印下面的值,但我想知道如何遍历列表并打印变量名称?
a = 'Red' b = 'Green' c = 'Blue' mylist = [a, b, c] for i in mylist: print(i)
当前输出:
Red Green Blue
期望的输出:
a b c