python 中的字典?

发布于 2024-07-25 01:27:20 字数 28 浏览 3 评论 0原文

我用Python有多少种方式遍历字典???

in how many way i traverse dictionary in python???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

深爱成瘾 2024-08-01 01:27:20

很多方法!

testdict = {"bob" : 0, "joe": 20, "kate" : 73, "sue" : 40}

for items in testdict.items():
    print (items)

for key in testdict.keys():
    print (key, testdict[key])

for item in testdict.iteritems():
    print item

for key in testdict.iterkeys():
    print (key, testdict[key])

这只是一些,但开始从这些简单的方法转向更复杂的方法。 所有代码都经过测试。

Many ways!

testdict = {"bob" : 0, "joe": 20, "kate" : 73, "sue" : 40}

for items in testdict.items():
    print (items)

for key in testdict.keys():
    print (key, testdict[key])

for item in testdict.iteritems():
    print item

for key in testdict.iterkeys():
    print (key, testdict[key])

That's a few, but that begins to departing from these simple ways into something more complex. All code was tested.

明月夜 2024-08-01 01:27:20

如果我正确解释你的问题,你可以通过多种方式浏览字典。

此处是一本适合初学者阅读的好书。

此外,字典可能不是您最好的选择。更多信息会有所帮助,更不用说它会帮助您。

If I am interpreting your question correctly, you can transverse Dictionaries in many ways.

A good read for beginners is located here.

Also a Dictionary might not be your best bet.More information would be helpful, not to mention it would aid in assisting you.

假装爱人 2024-08-01 01:27:20

http://docs.python.org/tutorial/datastructs.html#looping-技巧

>>> knights = {'gallahad': 'the pure', 'robin': 'the brave'}
>>> for k, v in knights.iteritems():
...     print k, v
...
gallahad the pure
robin the brave

http://docs.python.org/tutorial/datastructures.html#looping-techniques

>>> knights = {'gallahad': 'the pure', 'robin': 'the brave'}
>>> for k, v in knights.iteritems():
...     print k, v
...
gallahad the pure
robin the brave
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文