aTuple=('b','c','d','e','f','g') print(aTuple.index('d',0,1)) #ValueError: tuple.index(x): x not in tuple 1. 2. 3. 5. 修改数据(不能修改) 案例 aTuple=('b','c','d','e','f','g') aTuple[1]=23 #TypeError: 'tuple' object does not support item assignment 1...
前面我们粗暴的把tuple当做限定长度的list了(有些场景可以很有用,比如定长list)。 所以我们有时候也会把list转成tuple,照样获取元素进行业务操作。 下面学委准备了一些代码展示: #!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/10/30 6:39 下午 # @Author : LeiXueWei # @CSDN/Ju...