在Python中,tuple(元組)是一個有序、不可變、可以包含不同數據類型的數據結構。它類似于列表(list),但不同之處在于元組的元素不能被修改。tuple使用圓括號進行定義,并且可以包含任意數量的元素。
以下是tuple的常用用法:
my_tuple = (1, 2, 3)
print(my_tuple[0]) # 輸出:1
print(my_tuple[1:3]) # 輸出:(2, 3)
for item in my_tuple:
print(item)
print(2 in my_tuple) # 輸出:True
print(my_tuple.count(2)) # 輸出:1
print(my_tuple.index(2)) # 輸出:1
x, y, z = my_tuple
def get_coordinates():
return 1, 2, 3
x, y, z = get_coordinates()
需要注意的是,由于元組是不可變的,因此無法對元組進行修改。如果需要對元組中的元素進行修改,可以先將元組轉換為列表,然后進行修改,再轉換回元組。例如:
my_tuple = (1, 2, 3)
my_list = list(my_tuple)
my_list[0] = 4
my_tuple = tuple(my_list) # (4, 2, 3)