通过索引访问 Python 字典的元素
在 Python 中,字典是键值对的集合,其中每个键都是唯一的并与一个特定的值。要访问字典的元素,您需要使用相应的键。
考虑字典:
mydict = { 'Apple': {'American':'16', 'Mexican':10, 'Chinese':5}, 'Grapes':{'Arabian':'25','Indian':'20'} }
要访问“Apple”键的第一个元素,即“American” ',按照以下步骤操作:
检索与 'Apple' 关联的值:
apple_dict = mydict['Apple']
apple_dict 变量现在包含内部字典。要访问“American”:
american_apples = apple_dict['American']
在您的情况下,打印“Apple”的第一个元素',格式为“American: 16”,使用以下代码:
print("American:", mydict['Apple']['American'])
请注意,每次运行应用程序时,输入数据的格式可能会有所不同。但是,上述方法将允许您使用适当的键来访问元素,而不管具体数据如何。
以上是如何通过索引访问Python字典的元素?的详细内容。更多信息请关注PHP中文网其他相关文章!