python 语言教程变量之字典

Posted thefist11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 语言教程变量之字典相关的知识,希望对你有一定的参考价值。

1. 字典(dictionary)

是除列表以外python之中最灵活的内置数据结构类型。用" "标识。字典由索引(key)和它对应的值value组成。

1.1 vs 列表

列表:有序的对象集合
字典:无序的对象集合,字典当中的元素是通过键来存取的,而不是通过偏移存取。

实例(Python 2.0+)
#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
dict = 
dict['one'] = "This is one"
dict[2] = "This is two"
 
tinydict = 'name': 'runoob','code':6734, 'dept': 'sales'
  
print dict['one']          # 输出键为'one' 的值
print dict[2]              # 输出键为 2 的值
print tinydict             # 输出完整的字典
print tinydict.keys()      # 输出所有键
print tinydict.values()    # 输出所有值

输出结果:

This is one
This is two
'dept': 'sales', 'code': 6734, 'name': 'runoob'
['dept', 'code', 'name']
['sales', 6734, 'runoob']

以上是关于python 语言教程变量之字典的主要内容,如果未能解决你的问题,请参考以下文章

python 语言教程变量之数字类型

python 语言教程变量之列表(List)

python 语言教程变量之字符串

Python3教程之字典

Python3教程:字典转为成员变量的方法

好程序员Python教程分享python之变量