字典訪問操作【每日一個知識點第185期-Python】
把相應的鍵放入到方括號中,如下實例:
#!/usr/bin/Python3 dict = {'Name': 'Runoob', 'Age': 7, 'Class': 'First'} print ("dict['Name']: ", dict['Name']) print ("dict['Age']: ", dict['Age'])
以上實例輸出結果:
dict['Name']: Runoob dict['Age']: 7
如果用字典里沒有的鍵訪問數據,會輸出錯誤如下:
#!/usr/bin/Python3 dict = {'Name': 'Runoob', 'Age': 7, 'Class': 'First'}; print ("dict['Alice']: ", dict['Alice'])
以上實例輸出結果:
Traceback (most recent call last): File "test.py", line 5, in <module> print ("dict['Alice']: ", dict['Alice']) KeyError: 'Alice'
《Python入門每日一個知識點》欄目是馬哥教育Python年薪20萬+的學員社群特別發起,分享Python工具、Python語法、Python項目等知識點,幫助大家快速的了解Python學習,快速步入Python高薪的快車道。
http://haohuigou.com/73198.html