python中hashmap的方法_hashmap - Python中的哈希映射

hashmap - Python中的哈希映射

我想在Python中实现HashMap。 我想问一个用户输入。 根据他的输入,我正在从HashMap中检索一些信息。 如果用户输入HashMap的键,我想检索相应的值。

如何在Python中实现此功能?

HashMap streetno=new HashMap();

streetno.put("1", "Sachin Tendulkar");

streetno.put("2", "Dravid");

streetno.put("3","Sehwag");

streetno.put("4","Laxman");

streetno.put("5","Kohli")

Kiran Bhat asked 2019-07-21T17:37:21Z

8个解决方案

190 votes

Python字典是一种支持键值对的内置类型。

streetno = {"1":"Sachine Tendulkar", "2":"Dravid", "3":"Sehwag", "4":"Laxman","5":"Kohli"}

以及使用dict关键字:

streetno = dict({"1":"Sachine Tendulkar", "2":"Dravid"})

要么:

streetno = {}

streetno["1"] = "Sachine Tendulkar"

Alan answered 2019-07-21T17:37:44Z

17 votes

所有你想要的(在问题最初被问到的时候)都是一个暗示。 这是一个提示:在Python中,您可以使用词典。

Christian Neverdal answered 2019-07-21T17:38:09Z

16 votes

它内置于Python。 看字典。

根据你的例子:

streetno = {"1": "Sachine Tendulkar",

"2": "Dravid",

"3": "Sehwag",

"4": "Laxman",

"5":

你可能感兴趣的:(python中hashmap的方法_hashmap - Python中的哈希映射)