元组数据类型
列表括在方括号[]中,它们的元素和大小可以更改,而元组括在括号()中,无法更新。元组是不可变的。
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.