1. 程式人生 > >Python學習字典.基礎三

Python學習字典.基礎三

鍵值 python學習 一個 方括號 strong 花括號 定義 數據類型 print

元組   Python的元組與列表類似,不同之處在於元組的元素不能修改。   元組使用小括號,列表使用方括號。   元組中要定義的元組中只有一個元素需要再元素後面加逗號,用來消除數學歧義。例 t=(1,) 字典   字典的每個鍵值(key=>value)對用冒號(:)分割,每個對之間用逗號(,)分割,整個字典包括在花括號{}中。   鍵必須是唯一的,但值則不必(只可以取任何數據類型,但鍵必須不可變) 例子: #coding=utf-8 #!/usr/bin/python student={1:‘ja‘,2:‘qw‘,3:‘as‘} print (student[1]) student[4]=‘zxc‘ #新增的鍵值對 print (student) student[2]=‘we‘ #修改字典值 print (student) del student[2] #刪除字典值鍵對 print (student) student.clear() print (student) #清除字典全部鍵值 del student #刪除字典 print (student)

Python學習字典.基礎三