建立元組: 元組可以使用圓括號 () 建立:
my_tuple = () my_tuple = (1, 2, 3)
空元組表示一個長度為 0 的元組。
存取元組元素: 與列表和字串類似,可以使用索引存取元組元素:
my_tuple = (1, 2, 3) print(my_tuple[0])# 输出:1
不可變性: 元組是不可變的,這意味著創建後不能更改其元素或大小。試著這樣做會引發 TypeError:
my_tuple = (1, 2, 3) my_tuple[0] = 4# TypeError: "tuple" object does not support item assignment
基本運算: 元組支援各種基本操作,包括:
my_tuple1 = (1, 2, 3) my_tuple2 = (4, 5, 6) new_tuple = my_tuple1 + my_tuple2# (1, 2, 3, 4, 5, 6)
my_tuple = (1, 2, 3) repeated_tuple = my_tuple * 3# (1, 2, 3, 1, 2, 3, 1, 2, 3)
元組的優點:
元組的應用: 元組在 python 中有著廣泛的應用,包括:
總結: 元組是 Python 中強大且有用的資料結構,提供了不可變序列的功能。它們在各種應用程式中都有廣泛的應用,包括資料分組、函數參數傳遞和雜湊表鍵。理解元組的特性和操作對於有效利用 Python 程式設計至關重要。
以上是元組指南:Python 中不可變序列的全面理解的詳細內容。更多資訊請關注PHP中文網其他相關文章!