Skip to main content

Tuple 元組

元組 類似於清單,但它們是不可變的,表示其內容無法變更。它們以括號表示。

a = (1, 2, 3)
b = ('red', 'green', 'blue')