python字典是什麼
1、概念
字典是透過名字來引用值的資料結構,並且把這種資料結構稱為對映,字典中的值沒有特殊的順序,都儲存在一個特定的鍵(key)下,鍵可以是數字、字串甚至元組。字典也是python中唯一內建的對映型別。
2、格式
my_dict = {key1:value1, key2:value2}
3、建立方法
(1)使用dict函式建立
items=[('name','god'),('age',42)] d=dict(items) print(d) # 結果為{'name': 'god', 'age': 42} # 如果不為dict函式傳入資料,則會建立一個空字典 t=dict() print(t) # 結果為 {}
(2)指定關鍵字引數來建立字典
d=dict(name='god',age=12) print(d) # 結果為 {'name':'god','age':12}
以上就是python字典的介紹,大家在看完有關字典的基礎內容後,可以親自動手嘗試一下字典的建立。更多Python學習指路:
(推薦作業系統:windows7系統、Python 3.9.1,DELL G3電腦。)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2480/viewspace-2830337/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 什麼是字典?Python字典是可變的嗎?Python
- python中的字典是什麼Python
- 什麼是Oracle的資料字典?Oracle
- 字典和json的區別是什麼?Python學習JSONPython
- 什麼是python?python有什麼用途?Python
- 什麼是PythonPython
- Python列表、元組、集合、字典的區別是什麼?入門知識!Python
- Python是什麼?為什麼要掌握python?Python
- Python是什麼意思?Python有什麼用?Python
- Python是什麼語言?Python底層語言是什麼?Python
- 什麼是Python?Python為什麼這麼搶手?Python
- python arange是什麼Python
- python re是什麼?Python
- python是什麼蛇Python
- python title是什麼Python
- python 是什麼意思Python
- python rabbitmq是什麼PythonMQ
- python wheel是什麼Python
- Python是什麼?為什麼Python受歡迎?Python
- Python是什麼意思?Python幹什麼用的?Python
- Python是什麼?為什麼這麼搶手?Python
- 什麼是程式語言,什麼是Python直譯器Python
- Python到底是什麼?為什麼要學Python?Python
- 資料庫索引是什麼?新華字典來幫你資料庫索引
- 什麼是Python?Python前景怎麼樣?Python
- 【Python】__name__ 是什麼?Python
- python列表切片是什麼Python
- spyder是python的什麼Python
- python新式類是什麼Python
- python中loc是什麼Python
- python是什麼課程Python
- python迭代器是什麼Python
- python語言是什麼Python
- fluent python是什麼意思Python
- Python的列表是什麼Python
- 為什麼是python (轉)Python
- 什麼是Python?前景怎麼樣?Python
- 英文Python是什麼意思?學Python需要什麼基礎?Python