Home > Backend Development > Python Tutorial > 在Python中用get()方法获取字典键值的教程

在Python中用get()方法获取字典键值的教程

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 11:17:19
Original
1482 people have browsed it

 get()方法返回给定键的值。如果键不可用,则返回默认值None。
语法

以下是get()方法的语法:

dict.get(key, default=None)

Copy after login

参数

  • key -- 这是要搜索在字典中的键。
  • default -- 这是要返回键不存在的的情况下默认值。

返回值

该方法返回一个给定键的值。如果键不可用,则返回默认值为None。
例子

下面的例子显示了get()方法的使用。

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 27}

print "Value : %s" % dict.get('Age')
print "Value : %s" % dict.get('Sex', "Never")

Copy after login

当我们运行上面的程序,它会产生以下结果:

Value : 27
Value : Never

Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template