我像这样设置字典数据类型。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我如何得到结果?(键 -> 列表)。感谢观看我的问题。
添加回答
举报
0/150
提交
取消