a = (12,"oi",False)
# 查找数据,返回下标
index = a.index(12)
print(index)
# 统计某个数据在当前元组出现的次数
count = a.count("oi")
print(count)
# 统计元组内元素个数
len = len(a)
print(len)
元组常用方法
最新推荐文章于 2024-11-11 21:30:41 发布
a = (12,"oi",False)
# 查找数据,返回下标
index = a.index(12)
print(index)
# 统计某个数据在当前元组出现的次数
count = a.count("oi")
print(count)
# 统计元组内元素个数
len = len(a)
print(len)