元組資料型別
列表括在方括號[]中,它們的元素和大小可以更改,而元組括在括號()中,無法更新。元組是不可變的。
tuple = (123,'hello')
tuple1 = ('world')
print(tuple) #will output whole tuple. (123,'hello')
print(tuple[0]) #will output first value. (123)
print(tuple + tuple1) #will output (123,'hello','world')
tuple[1]='update' #this will give you error.