函数返回的字典的键是什么?

时间:2018-05-22 18:40:43

标签: python python-3.x dictionary

我使用的功能是当你打电话给她时它返回字典, 我写的哪个命令会打印出字典的键? 感谢。

1 个答案:

答案 0 :(得分:0)

您可以通过调用 your_dict.keys()

来获取带有键的可迭代对象
>>> my_dict = {'1': 'one', '2': 'two'}
>>> for item in my_dict.keys():
        print(item)
1
2