Python 3 7 元組 tuple 學習

2021-10-05 20:05:00 字數 879 閱讀 6873

元組(tuple) 是 python 中常用的序列,它是不可修改的。

定義元組

tuple1 =()

tuple2 =

('hello'

,'python'

)tuple3 =

('hello'

,'python'

,2020

)# python 是完全動態資料型別,同乙個元組元素型別可以是多種的

print

(tuple1)

# ('hello', 'python')

獲取元組長度
length =

len(tuple2)

print

(length)

# 2

元組簡單切片
numbers =(1

,2,3

,4,5

,6,7

,8,9

,10) numbers_slicing = numbers[3:

5]print

(numbers_slicing)

# (4, 5)

元組相加
numbers1 =(1

,2,3

,4)numbers2 =(5

,6,7

)numbers = numbers1 + numbers2

print

(numbers)

# (1, 2, 3, 4, 5, 6, 7)

元組相乘
numbers =(1

,2)*

3print

(numbers)

# (1, 2, 1, 2, 1, 2)

python入門11 元組tuple

tuple元組是一種不可變資料型別,也是一種序列,因此可用序列的各類方法,比如切片和索引 coding utf 8 usr bin python 2018 11 03 dinghanhua 元組 元組,不可改變 賦值turple1 1,2turple2 3,4,a true print type t...

Python基礎(三) 元組tuple

python 的元組與列表類似,不同之處在於元組的元素不能修改,不可增加和刪除。元組使用小括號 列表使用方括號 元組建立很簡單,只需要在括號中新增元素,並使用逗號隔開即可。tup1 50 t type tup1 print t 結果 tup2 50,t type tup2 print t 結果 元組...

Python 序列型別2 元組tuple)

元組與列表相似,不同的是元組內的元素不可更改 列表與元組可以相互轉換 使用元組的好處 1.元組的建立tup 1 2 tup1 1 tup2 a b c 元組的建立只需在小括號內新增由逗號分割的元素即可 注 當元組內只有乙個元素時,需在元素後加逗號否則型別不明確 如下tup 1 tup1 1 prin...