日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

python 字符串 数组 判断,Python的字符串的数组指数

發布時間:2024/9/15 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python 字符串 数组 判断,Python的字符串的数组指数 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Is it possible to use strings as indices in an array in python?

For example:

myArray = []

myArray["john"] = "johns value"

myArray["jeff"] = "jeffs value"

print myArray["john"]

解決方案

What you want is called an associative array. In python these are called dictionaries.

Dictionaries are sometimes found in other languages as “associative memories” or “associative arrays”. Unlike sequences, which are indexed by a range of numbers, dictionaries are indexed by keys, which can be any immutable type; strings and numbers can always be keys.

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 字符串 数组 判断,Python的字符串的数组指数的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。