python3 字典
Posted lq0310
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 字典相关的知识,希望对你有一定的参考价值。
字典(dictionary)是除列表以外python之中最灵活的内置数据结构类型。列表是有序的对象集合,字典是无序的对象集合。
两者之间的区别在于:字典当中的元素是通过键来存取的,而不是通过偏移存取。
字典用"{ }"标识。字典由索引(key)和它对应的值value组成。
dict = {}
dict[‘one‘] = "This is one"
dict[2] = "This is two"
tinydict = {‘name‘: ‘john‘,‘code‘:6734, ‘dept‘: ‘sales‘}
print dict[‘one‘] # 输出键为‘one‘ 的值
print dict[2] # 输出键为 2 的值
print tinydict # 输出完整的字典
print tinydict.keys() # 输出所有键
print tinydict.values() # 输出所有值
以上是关于python3 字典的主要内容,如果未能解决你的问题,请参考以下文章