這篇文章主要介紹了Python簡單定義與使用字典的方法,結合簡單實例形式分析了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的使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!