我像这样设置字典数据类型。
a={'name':'pey','phone':'0101111','birth':'1111'}
我想将密钥转换为列表。
所以,我像这样在 iDle 中指挥。
list(a.keys())
我希望这个结果是
['name','phone','birth']
但是,我有这个错误。
Traceback (most recent call last):File "<pyshell#188>", line 1, in <module> list(a.keys()) TypeError: 'list' object is not callable
我如何得到结果?(键 -> 列表)。感谢观看我的问题。
回首忆惘然
相关分类