标签: python python-3.x
我需要创建一个以字符串命名的列表。例如,我得到了字符串x = 'whatever'。如果我做
x = 'whatever'
x = []
然后列表将被命名为x,而不是whatever。有没有办法做到这一点?
x
whatever