python數據結構之元組(tuple)——超詳細

元組 元組和列表相比,元組不可改變,且建立的時候逗號(,)纔是元組的標誌所在,小括號只是起一個補充做用,爲了看起來好理解python 1.建立元組web tuple2 = 1, 2, 3, 4 tuple2    (1, 2, 3, 4)svg type(tuple2) # tuple 類型    tupleui tuple1 = (1, 2, 3, 4, 5) tuple1    (1, 2,
相關文章
相關標籤/搜索