puthon基礎實戰 四 Tuple

2021-10-07 10:45:21 字數 1162 閱讀 2624

python中常用的contailer types(型別)有四個:

上篇部落格對list了解了一下,本篇則對tuple學習一下。list是可以對其進行增刪改操作,利用的符號是,而tuple則沒有那麼大的活動性,一旦建立,則不能再進行增刪改操作。利用的符號是()。

empty_tuple=()

empty_tuple

week_tuple=

('monday'

,'tuesday'

)week_tuple

#()代表的則是乙個tuple,可直接輸出

(123

,456

,789

)single_tuple=

('monday',)

single_tuple

type

(single_tuple)

huohuo_tuple=

('huohuo'

,'male',20

)name,gender,age=huohuo_tuple

print

('name='

,name,

",gender="

,gender,

",age="

,age)

//輸出結果()

('monday'

,'tuesday')(

123,

456,

789)

('monday',)

tuple

name= huohuo ,gender= male ,age=

20

tuple不可變是有很大的好處的。

single_tuple=

('monday',)

single_tuple

type

(single_tuple)

# 建立單個元素的元組,','是必不可少的。通過兩個型別就能夠判定逗號的重要性

single_tuple1=

('monday'

)single_tuple1

type

(single_tuple1)

//輸出結果

('monday',)

tuple

'monday'

str

Python語言基礎(四) list與tuple

python內建列表list,list是乙個有序列表 寫起來感覺很爽 這裡有乙個很有意思的東西 li 1 代表的是li列表最後乙個元素,依次類推li 2 是第二個,li 3 是第三個,只要不超出列表的長度,可以在負數上進行索引,很奇妙 list刪除末尾元素使用pop方法,刪除指定索引位置的元素使用p...

MySQL基礎(四) 實戰練習

資料匯入匯出 見附件 將excel檔案匯入mysql表 mysql匯出表到excel檔案 建立employee 表,包含所有員工資訊,每個員工有其對應的 id,salary 和 department id。idname salary departmentid 1joe 7000012 henry 8...

python基礎學習2 list與tuple

列表list,字典是可變資料型別,列表項有順序 字串,元組tuple是不可變型別 迴圈列表 import random list1 pens bags dogs cows for i in range len list1 print index str i is list1 i print list...