gpt4 book ai didi

python - python中的命名字典

转载 作者:太空宇宙 更新时间:2023-11-04 10:49:57 28 4
gpt4 key购买 nike

我对如何在 Python 中使用 PHP 中的命名数组进行了一些研究,同时我发现了以下代码示例,因为他们说可以使用字典来完成。

shows = [
{"id": 1, "name": "Sesaeme Street"},
{"id": 2, "name": "Dora The Explorer"},
]

来源:Portion of code getting from here

引用:Python references

但是我如何通过循环添加新值呢?虽然显示了如何通过简单地显示 ['key']="value"添加单个值的引用文献,但我无法将它们链接起来。任何人都可以告诉我如何通过循环将值添加到这个字典中吗?

例如:

for message in messages: 
myvariable inside having two field
- Message
- Phone number

更新我可以知道如何在将 aped 列表放入字典后循环显示它们吗?谢谢!

最佳答案

您应该将字典添加到数组中,例如:

friends = []
for message in messages:
dict = {"message" : message.message, "phone" : message.phone }
friends.append(dict)

要再次循环,你可以这样做:

for friend in friends:
print "%s - %s" % (friend["message"], friend["phone"])

关于python - python中的命名字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14582852/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com