本文介绍了Python的字符串的数组指数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有可能在Python中使用字符串作为索引的数组?

例如:

  myArray的= []
myArray的[约翰] =嫖客值
myArray的[杰夫] =杰夫斯值
打印myArray的[约翰]


解决方案

您想要什么叫做。在蟒蛇这些被称为。

myDict = {}
myDict["john"] = "johns value"
myDict["jeff"] = "jeffs value"

Alternative way to create the above dict:

myDict = {"john": "johns value", "jeff": "jeffs value"}

Accessing values:

print myDict["jeff"] # => "jeffs value"

Getting the keys (in Python v2):

print myDict.keys() # => ["john", "jeff"]


If you want to learn about python dictionary internals, I recommend this ~25 min video presentation: https://www.youtube.com/watch?v=C4Kc8xzcA68. It's called the "The Mighty Dictionary".

这篇关于Python的字符串的数组指数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 02:34