如何访问我的字典

这个问题在这里已经有了答案:

  • 使用'for'循环遍历字典12个答案

  • Discover是你的词典的关键。 您可以使用keys()方法访问字典中的密钥集合。 然后使用每个键访问关联的元素。

    for key in account.keys():
        print(key)
        print(account[key])
    

    由于Discover是您可以print account.keys()[0]的唯一键。

    但是,如果你有更多的键,这将不会每次都工作,因为字典是任意排序的(换句话说,没有秩序感),你需要迭代keys()列表,或者只是print account.keys()打印整个密钥列表。


    如果你有更多的键,你可以像这样循环:

    for i in account:
        print i
    
    链接地址: http://www.djcxy.com/p/30361.html

    上一篇: How to access my dictionary

    下一篇: Use more than 1 iterable in a python for loop