Python 元組(tuple)是一種不可變的序列類型,用于存儲一組有序的數(shù)據(jù)
my_dict = {('key1', 'key2'): 'value'}
def my_function():
return 1, 2, 3
result = my_function()
print(result) # 輸出:(1, 2, 3)
a, b, c = (1, 2, 3)
print(a, b, c) # 輸出:1 2 3
squared_tuples = [(x, x**2) for x in range(1, 6)]
print(squared_tuples) # 輸出:[(1, 1), (2, 4), (3, 9), (4, 16), (5, 25)]
enumerate()
函數(shù)遍歷元組:enumerate()
函數(shù)可以與元組一起使用,以便在遍歷元組時同時獲取元素的索引和值。my_tuple = ('apple', 'banana', 'cherry')
for index, value in enumerate(my_tuple):
print(index, value)
zip()
函數(shù)將多個元組組合成一個元組:zip()
函數(shù)可以將多個元組組合成一個元組,這在需要將相關(guān)數(shù)據(jù)組合在一起時非常有用。tuple1 = (1, 2, 3)
tuple2 = ('a', 'b', 'c')
combined_tuple = tuple(zip(tuple1, tuple2))
print(combined_tuple) # 輸出:((1, 'a'), (2, 'b'), (3, 'c'))
*
操作符將元組解包為函數(shù)參數(shù):可以使用 *
操作符將元組解包為函數(shù)參數(shù),這在需要將元組作為參數(shù)傳遞給函數(shù)時非常有用。def my_function(a, b, c):
print(a, b, c)
my_tuple = (1, 2, 3)
my_function(*my_tuple) # 輸出:1 2 3
這些技巧可以幫助您更有效地使用 Python 元組,提高代碼的可讀性和靈活性。