元組和列表十分類似,只不過元組和字串一樣是不可變的即你不能修改元組。元組透過圓括號中用逗號分割的專案定義。元組通常用在使語句或使用者定義的函式能夠安全地採用一組值的時候,即被使用的元組的值不會改變。1、Python中元組的書面形式和規範:tuplename=(tupleitem1,tupleitem2,tupleitem3,tupleitem4)tuplename=tupleitem1,tupleitem2,tupleitem3,tupleitem4注意:定義元組的是逗號,而非括號。zoo=("wolf","elephant","penguin")print"Numberofanimalsinthezoois",len(zoo)new_zoo=("monkey","dolphin",zoo)print"Numberofanimalsinthenewzoois",len(new_zoo)print"Allanimalsinnewzooare",new_zooprint"Animalsbroughtfromoldzooare",new_zoo[2]print"Lastanimalbroughtfromoldzoois",new_zoo[2][2]一個空的元組由一對空的圓括號組成,如 myempty=()。然而,含有單個元素的元組必須在第一個(唯一一個)專案後跟一個逗號,這樣Python才能區分元組和表示式中一個帶圓括號的物件。
元組和列表十分類似,只不過元組和字串一樣是不可變的即你不能修改元組。元組透過圓括號中用逗號分割的專案定義。元組通常用在使語句或使用者定義的函式能夠安全地採用一組值的時候,即被使用的元組的值不會改變。1、Python中元組的書面形式和規範:tuplename=(tupleitem1,tupleitem2,tupleitem3,tupleitem4)tuplename=tupleitem1,tupleitem2,tupleitem3,tupleitem4注意:定義元組的是逗號,而非括號。zoo=("wolf","elephant","penguin")print"Numberofanimalsinthezoois",len(zoo)new_zoo=("monkey","dolphin",zoo)print"Numberofanimalsinthenewzoois",len(new_zoo)print"Allanimalsinnewzooare",new_zooprint"Animalsbroughtfromoldzooare",new_zoo[2]print"Lastanimalbroughtfromoldzoois",new_zoo[2][2]一個空的元組由一對空的圓括號組成,如 myempty=()。然而,含有單個元素的元組必須在第一個(唯一一個)專案後跟一個逗號,這樣Python才能區分元組和表示式中一個帶圓括號的物件。