网络编程
位置:首页>> 网络编程>> Python编程>> Python简单定义与使用字典dict的方法示例

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

作者:坏蛋是我  发布时间:2023-03-10 03:22:48 

标签:Python,字典

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


#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程序设计有所帮助。

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com