1.元组中元素不能再添加,t.append('nope')所以这个操作会报错,
元组中元素也不能再修改,t[0]= 'change'这个操作也是错的
2.查找某个元素在列表中首次出现的位置(即索引),使用如下所示:
# Use .index to enter a value and return the index
t.index('one')
# Use .count to count the number of times a value appears
t.count('one')
上面两段语句,分别是对tuple里的‘one’索引它第一次出现的位置,第二句是数有多少‘one’这个item
另外求长度 len(t)
3.使用t[0] 、t[-1]来调用元组里的第一个item和第二个item



