#create a tuple
tuplex = tuple("index tuple")
print(tuplex)
#get index of the first item whose value is passed as parameter
index = tuplex.index("p")
print(index)
#define the index from which you want to search
index = tuplex.index("p", )
print(index)
#define the segment of the tuple to be searched
index = tuplex.index("e", , )
print(index)
#if item not exists in the tuple return ValueError Exception
index = tuplex.index("y")
相关文章
- 02-24Python IndexError:在VCF中查找SNP时列出索引超出范围
- 02-24PYTHON 写函数,检查用户传入的对象(字符串、列表、元组)的每一个元素是否含有空内容。
- 02-24python – 如何使用元组索引列表?
- 02-24Python:列表索引必须是整数,而不是元组
- 02-24python – 如何访问元组字典的特定元素
- 02-24基于最后一个元素的Python元组排序
- 02-24在列表中查找唯一元组(忽略顺序),同时在python中保留其他元组的原始顺序?
- 02-24python – 如何将单个元素和元组压缩成一个元组?
- 02-24python – 获取自己的元组元素的数量……不仅仅是范围或序列
- 02-24Python自定义排序,由元组的两个元素区别