目錄
1 元組型別
1.1元祖建立
1.2 空元祖型別建立:
1.3 元組修改
1.4 元組的刪除
2 字典型別
不需要括號可以但是乙個元素就當成了字串型別了
>>> tup1="a";
>>> type(tup1)
>>> tup2="a","b";
>>> type(tup2)
>>> tup3=(1,2,3,4);
>>> tup3
(1, 2, 3, 4)
>>> tup4=('zx','xkd',100)
>>> tup4
('zx', 'xkd', 100)
>>> tup=()
>>> tup ()
建立乙個元素的元祖:
元祖是乙個元素時元素後面須有乙個,號,不然就當作整形處理
>>> tup=(30)
>>> tup 30
>>> type(tup)
>>> tup=(20,)
>>> type(tup)
元組元素是不允許修改的,但可以進行元組的連線組合
>>> tup=(1,2,3)
>>> tup1=(2,3,4)
>>> tup2=tup+tup1
>>> print(tup2)
(1, 2, 3, 2, 3, 4)
>>> tup
(1, 2, 3)
>>> del tup
>>> tup
traceback (most recent call last):
file "", line 1, in
tupnameerror: name 'tup' is not defined
dict =
print ("dict['name']: ", dict['name'])#不允許同乙個鍵被賦值兩次,如果賦值則後乙個被記住
dict['age'] = 8; # 更新 age
dict['school'] = "haha" # 新增資訊
print ("dict['age']: ", dict['age'])
print ("dict['school']: ", dict['school'])
del dict['name']
print('輸出刪除後的字典:',dict)
dict.clear() #清空字典
print('輸出清空後的字典:',dict)
del dict # 刪除字典
print('輸出刪除後的字典:',dict)
print('輸出刪除後的字典某鍵值對:',dict[age]) #出錯 因為字典不存在
輸出:
dict['name']: xkd
dict['age']: 8
dict['school']: haha
輸出刪除後的字典:
輸出清空後的字典: {}
輸出刪除後的字典: traceback (most recent call last):
file "c:\users\administrator\desktop\2.py", line 15, in print('輸出刪除後的字典某鍵值對:',dict[age]) #出錯 因為字典不存在
nameerror: name 'age' is not defined
Python基礎五(元組 字典)
字典簡介 tuple1 1 2,3 tuple1 1,tuple1 1 2,3 4 a,b,c tuple1 print a,b,c 輸出結果為 1 2,3 4字典的作用和列表類似,都是用來儲存物件的容器 列表儲存資料的效能好,但是查詢資料的效能差,字典正好與之相反 在字典中每乙個元素都有唯一的名字...
Python基礎(七) 元組和字典上
for迴圈的 塊會執行多次,次數根據序列中的元素個數而定,每執行一次會將序列中的乙個元素賦值給變數,所以我們可以通過變數來獲取序列中的元素。示例 for i in range 9 相當於range 0,9,1 相當於 0,1,2,3,4,5,6,7,8 print i tuple5 1,2,3,4 ...
六 元組與字典
我們今天來認識兩種新的資料型別 元組和字典。字串拼接符 兩個字串之間,要把它們合二為一。我們可以這樣寫 print 123 456 輸出 123456直接使用 將兩個字串加到一起就可以了。認識元組 元組與列表近似,是由小括號 組成的,將資料括在中間,能儲存無數個資料,獲取方法也與列表相同,甚至連迴圈...