python基礎之元組篇

2022-06-12 01:21:09 字數 1094 閱讀 3963

一,元組的宣告和賦值

#

元組宣告 用小括號並且還需要有乙個逗號

tuple1 = (1)

tuple2 = (1,)

print(tuple1) #

1print(type(tuple1)) #

print(tuple2) #

(1,)

print(type(tuple2)) #

二,元組與列表的轉換

#

列表轉元組

list1 = [1,2,3,4,5]

tuple1 =tuple(list1)

print(tuple1) #

(1, 2, 3, 4, 5)

print(type(tuple1 )) #

#元組轉列表

tu = (1,2,3,4,5,6)

list1 =list(tu)

print(list1) #

[1, 2, 3, 4, 5, 6]

print(type(list1)) #

三,字串轉陣列

#

字串轉元組

str = '

hello

'tuple =tuple(str)

print(tuple) #

('h', 'e', 'l', 'l', 'o')

print(type(tuple)) #

#元組轉字串

tuple2 = ('

h', '

e', '

l', '

l', 'o'

)str = ''

.join(tuple2)

print(str) #

hello

print(type(str)) #

四,總結

對於元組:如果只有乙個元素,並且沒有逗號,此元素資料型別不會改變。

如果結尾有逗號,就是元組型別

python 元組 Python基礎之元組

元組特點 元組是有序的,不能修改。元組的定義 通過 來定義 變數名 1,2,3,4,以逗號分割的,以小括號包圍的序列。通過tuple函式定義 lst 1,2,3,4 變數名 tuple lst 元組的優點 由於元組不可變,所以遍歷元組比列表要快 較小的效能提公升 tup 1,2,3,4 檢視元組中的...

python基礎之元組

跟著廖雪峰老師的python基礎學習,記錄一下。與列表類似,但是不同之處在於元組的元素不能修改,定義 元組表示多個元素組成的序列 元組在python中有特定的應用場景 用於儲存一串資訊,資料之間用,分隔 元組用 定義 元組的索引從0開始 info tuple zhangsan 18,1.75 pri...

python基礎之元組

首先元組是不可變序列 不可以為元組中的元素重新賦值 一般情況不希望資料改變值就用元組,其餘可以用列表 my tuple 1,2,3,4,5 print my tuple,type my tuple 注 資料型別為tuple 如果想取元組其中的元素4,也就是目標索引值 print my tuple 3...