我正在尝试执行以下操作:
a = input("Enter the name of your list")
"{n}".format(n = a) = []
这显然是行不通的。有什么办法吗?
答案 0 :(得分:4)
让变量具有用户提供的名称的一种方法是将该变量创建为字典中的一项。
the_dict = {}
a = input("Enter the name of your list")
the_dict[a] = []
答案 1 :(得分:2)
使用exec
和eval
:
a = input("Enter the name of your list")
exec(str(a)+"=[]")
print(eval(a))
这确实满足您的要求,但不建议这样做,有关更好的解决方案,请参阅John的回答。