创建元祖

  1. temp = 1,2,3,4,5,6,7,8
  2. temp = (1,2,3,4,5,6,7,8)
  3. # 上面 2 种方式都可以创建

访问元祖

  1. temp = 1,2,3,4,5,6,7,8
  2. temp[:3]
  3. temp[3:]
  4. temp, tow, three = (1,2,3,4,5,6,7,8)
  5. print(temp, tow, three) # 这样就能获取访问到前3个数

更新插入元祖

  1. 原理,把现有的元祖进行切片, 然后构成新的元祖<br />注意插入的数据.如果只有1个的话. **后面需要要逗号**
  1. temp = 1,2,3,4,5,6,7,8
  2. temp = temp[:2] + (20,) + temp[2:]
  3. # 1,2,20,3,4,5,6,7,8

删除元祖

  1. temp = 1,2,3,4,5,6,7,8
  2. del temp

重复元祖

  1. temp = 8 * (8,)
  2. # 打印 (8,8,8,8,8,8,8,8)