更新元組 更改元組的值 元組是不可更改的,但有一種變通方法。您可以將元組轉換為列表,更改列表,然後將列表轉換回元組。 示例: x = ("apple", "banana", "cherry") y = list(x) y[1] = "kiwi" x = tuple(y) print(x) 添加項 由 ...
更新元組
更改元組的值
元組是不可更改的,但有一種變通方法。您可以將元組轉換為列表,更改列表,然後將列表轉換回元組。
示例:
x = ("apple", "banana", "cherry")
y = list(x)
y[1] = "kiwi"
x = tuple(y)
print(x)
添加項
由於元組是不可變的,沒有內置的append()
方法,但可以使用其他方法添加項。
轉換為列表,添加項,再轉換回元組:
thistuple = ("apple", "banana", "cherry")
y = list(thistuple)
y.append("orange")
thistuple = tuple(y)
將元組添加到元組中:
thistuple = ("apple", "banana", "cherry")
y = ("orange",)
thistuple += y
刪除項
元組不支持直接刪除項,但可以轉換為列表,刪除項,再轉換回元組。
thistuple = ("apple", "banana", "cherry")
y = list(thistuple)
y.remove("apple")
thistuple = tuple(y)
或者可以完全刪除元組:
thistuple = ("apple", "banana", "cherry")
del thistuple
Python - 解包元組
解包元組
可以將元組的值提取回變數,稱為解包。
示例:
fruits = ("apple", "banana", "cherry")
(green, yellow, red) = fruits
print(green)
print(yellow)
print(red)
使用星號 *
如果變數的數量少於值的數量,可以在變數名後添加星號*
,將剩餘的值收集到一個列表中。
示例:
fruits = ("apple", "banana", "cherry", "strawberry", "raspberry")
(green, yellow, *red) = fruits
print(green)
print(yellow)
print(red)
多重元組
可以使用*
運算符將元組的內容複製多次。
示例:
fruits = ("apple", "banana", "cherry")
mytuple = fruits * 2
print(mytuple)
遍歷元組
可以使用for
迴圈或通過索引編號來遍歷元組項。
示例:
thistuple = ("apple", "banana", "cherry")
for x in thistuple:
print(x)
通過索引編號遍歷:
thistuple = ("apple", "banana", "cherry")
for i in range(len(thistuple)):
print(thistuple[i])
使用while
迴圈遍歷:
thistuple = ("apple", "banana", "cherry")
i = 0
while i < len(thistuple):
print(thistuple[i])
i = i + 1
合併元組
合併兩個元組
可以使用+
運算符合併兩個元組。
示例:
tuple1 = ("a", "b", "c")
tuple2 = (1, 2, 3)
tuple3 = tuple1 + tuple2
print(tuple3)
多重元組
可以使用*
運算符將元組的內容複製多次。
示例:
fruits = ("apple", "banana", "cherry")
mytuple = fruits * 2
print(mytuple)
元組方法
Python 提供了兩個內置方法,可以在元組上使用:
count()
: 返回指定值在元組中出現的次數。index()
: 搜索元組中指定的值,並返回其找到的位置。
最後
為了方便其他設備和平臺的小伙伴觀看往期文章,鏈接奉上:
公眾號搜索Let us Coding
,知乎,開源中國,CSDN,思否,掘金,InfoQ,簡書,博客園,慕課,51CTO,helloworld,騰訊開發者社區,阿裡開發者社區
看完如果覺得有幫助,歡迎點贊、收藏和關註