Python羅技字典
Python 字典(Dictionary)
字典是另一種可變容器模型,且可儲存任意型別物件。
字典的每個鍵值 key=>value 對用冒號 : 分割,每個鍵值對之間用逗號 , 分割,整個字典包括在花括號 {} 中 ,格式如下所示:
d = {key1 : value1, key2 : value2 }
鍵一般是唯一的,如果重複最後的一個鍵值對會替換前面的,值不需要唯一。
一個簡單的字典例項:
dict = {‘Alice’: ‘2341’, ‘Beth’: ‘9102’, ‘Cecil’: ‘3258’}
也可如此建立字典:
https://www.xiaohongshu.com/discovery/item/5f89c2f600000000010014d8
dict1 = { ‘abc’: 456 }
dict2 = { ‘abc’: 123, 98.6: 37 }
訪問字典裡的值
把相應的鍵放入熟悉的方括弧,如下例項:
例項
#!/usr/bin/python
https://www.jianshu.com/p/5fb513a25230
dict = {‘Name’: ‘Zara’, ‘Age’: 7, ‘Class’: ‘First’}
print "dict[‘Name’]: ", dict[‘Name’]
print "dict[‘Age’]: ", dict[‘Age’]
以上例項輸出結果:
dict[‘Name’]: Zara
dict[‘Age’]: 7
如果用字典裡沒有的鍵訪問資料,會輸出錯誤如下:
相關文章
- Python羅技基礎Python
- python-字典Python
- Python dict(字典)Python
- python 字典排序Python排序
- python建立字典Python
- 【Python基礎】字典Python
- Python字典介紹Python
- Python3 字典Python
- Python中字典dictPython
- Python字典dict用法Python
- Python中的字典Python
- Python:字典的使用Python
- Python 3 字典(Dictionary)Python
- Python---字典方法Python
- python--字典dictPython
- 初學Python——字典Python
- Python字典的操作Python
- python3.2:字典Python
- python字典新增_增Python
- python進階(24)Python字典的底層原理以及字典效率Python
- Python中字典的操作Python
- Python基礎(04):字典Python
- python字典是什麼Python
- Python字典的特性分析Python
- Python實現建立字典Python
- python字典的小例子Python
- 【Python】字典的setdefault()方法Python
- Python 字典實現原理Python
- Python-defaultdict(type)字典Python
- dict字典常用操作(python)Python
- 初學Python(三)——字典Python
- Python 字典 fromkeys()方法Python
- python 實現有序字典Python
- Python 字典推導式Python
- python字典獲取_查Python
- python---字典遍歷Python
- python-字典-如何取出字典中的所有值Python
- 什麼是字典?Python字典是可變的嗎?Python