服务器之家

服务器之家 > 正文

python 中dict的元素取值操作

时间:2021-09-18 00:40     来源/作者:Loewi大湿

如下所示:

?
1
dict.get(key, default=none)

key – 字典中要查找的键。

default – 如果指定键的值不存在时,返回该默认值值。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{'1*': 9, '2*': 6, '**': 15}.values()
out[377]: dict_values([9, 6, 15])
 
{'1*': 9, '2*': 6, '**': 15}.keys()
out[378]: dict_keys(['1*', '2*', '**'])
 
{'1*': 9, '2*': 6, '**': 15}.items()
out[379]: dict_items([('1*', 9), ('2*', 6), ('**', 15)])
 
{'1*': 9, '2*': 6, '**': 15}.get('1*')
out[380]: 9
 
{'1*': 9, '2*': 6, '**': 15}.get('00','whatever')
out[381]: 'whatever'

补充:python字典键的取值和字典值的取值方法

python字典,因为字典是可变类型数据,允许对字典进行取值。

对键的取值方法,使用keys()函数。

程序实例1:

使用keys()函数取键名,并转换为列表。

?
1
2
3
4
5
dict_val = {'及时雨':"宋江",'花和尚':'鲁智深','母夜叉':'孙二娘'}
key = dict_val.keys()
print(key)
print(list(key))
print(list(key)[1])

python 中dict的元素取值操作

对字典的值进行取值操作,用values()函数。

程序实例2:

用values()函数对字典的值进行取值操作,并转化为列表。

?
1
2
3
4
5
dict_val = {'及时雨':"宋江",'花和尚':'鲁智深','母夜叉':'孙二娘'}
value = dict_val.values()
print(value)
print(list(value))
print(list(value)[1])

python 中dict的元素取值操作

对字典的元素进行取值,包括键名及其对应的值,使用items()函数。

程序实例3:

使用items()函数对字典的元素进行取值操作。

?
1
2
3
4
5
6
7
8
dict_val = {'及时雨':"宋江",'花和尚':'鲁智深','母夜叉':'孙二娘'}
item = dict_val.items()
print(item)
print(list(item))
print(list(item)[1])
key,value = list(item)[1]
print(key)
print(value)

python 中dict的元素取值操作

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。如有错误或未考虑完全的地方,望不吝赐教。

原文链接:https://blog.csdn.net/weixin_42317507/article/details/90613620

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部