脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python简单定义与使用字典dict的方法示例

Python简单定义与使用字典dict的方法示例

2020-11-28 11:00坏蛋是我 Python

这篇文章主要介绍了Python简单定义与使用字典的方法,结合简单实例形式分析了Python字典的原理、组成、定义及使用方法,需要的朋友可以参考下

本文实例讲述了Python简单定义与使用字典的方法。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#coding=utf8
print '''''
Python中的字典映射数据类型是由键值对构成。
python中字典一般以数字或者字符串作为键。
Python中字典的值可以是任意类型的Python对象,字典元素用大括号{}包裹。
'''
dicDefine={
  'Name':'ewang',
  'Age': 28,
  'Sex': 'famale',
  'BirthDay':'1998/09/1'
  }
print 'The content of dicDefind',dicDefine
print 'The keys of dicDefind',dicDefine.keys( )
print 'The values of dicDefind',dicDefine.values()
print 'The items of dicDefind',dicDefine.items()

运行结果:

Python简单定义与使用字典dict的方法示例

希望本文所述对大家Python程序设计有所帮助。

延伸 · 阅读

精彩推荐