#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的使用详解的详细内容,更多请关注Gxl网其它相关文章!
查看更多关于Python中关于字典dict的使用详解的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did81834