Python字典的特性分析
1、字典概念
Python中最常用的內建容器就是字典了,這是一種無序的鍵值對形式的物件集合。
2、三種特性
(1)無序,也就是說,不應該期待字典資料的訪問順序。真正的訪問順序完全由Python直譯器決定。
(2)鍵值對,這在其他程式語言中也被稱為關係陣列和雜湊,其應用在實際開發中相當普遍,json和XML形式的資料通常由這個資料結構處理。
(3)物件集合,這意味著和列表一樣,可以包含任何形式的資料。
注意,字典中的鍵是唯一的。當然,如果值一般,字典的鍵也是物件,其唯一的判斷邏輯取決於物件物件==運算子的過載處理,這在後續的深入理解部分提到。
3、例項
a = {"name": "jack chen", "age": 16}
以上就是Python字典的特性分析,希望對大家有所幫助。更多Python學習指路:
本文教程操作環境:windows7系統、Python 3.9.1,DELL G3電腦。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2041/viewspace-2830406/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python字典鍵的特性及字典內建函式&方法Python函式
- Python中的字典Python
- Python:字典的使用Python
- Python字典的操作Python
- Python中字典的操作Python
- python字典的小例子Python
- 【Python】字典的setdefault()方法Python
- python進階(24)Python字典的底層原理以及字典效率Python
- python-字典-如何取出字典中的所有值Python
- 什麼是字典?Python字典是可變的嗎?Python
- python-字典Python
- Python dict(字典)Python
- Python羅技字典Python
- python 字典排序Python排序
- python建立字典Python
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- Python字典遍歷的陷阱Python
- python中的集合與字典Python
- python中的字典學習Python
- Python中的列表、元祖、字典Python
- Python字典的高階用法Python
- python3 字典的使用Python
- Python中遍歷字典以及字典中的鍵和值Python
- 【Python基礎】字典Python
- Python字典介紹Python
- Python3 字典Python
- Python中字典dictPython
- Python字典dict用法Python
- Python 3 字典(Dictionary)Python
- Python---字典方法Python
- python--字典dictPython
- 初學Python——字典Python
- python3.2:字典Python
- python字典新增_增Python
- python 字典修改鍵(key)的方法Python
- python中的字典是什麼Python
- python輸出字典的方法整理Python