python元组有哪些获取元素的方法
1、通过索引获取元素
>>> letters = (‘a’, ‘b’, ‘c’)>>> letters[2]
’c’
2、通过元素获取索引
>>> letters = (‘a’, ‘b’, ‘c’)>>> letters.index(‘c’)
2
3、查看元素是否存在于元组中
>>> letters = (‘a’, ‘b’, ‘c’)>>> ‘a’ in letters
True
>>> ‘z’ in letters
False
4、统计元素在元组中出现的个数
>>> numbers = (1, 2, 2, 3, 4, 5, 5, 7)>>> numbers.count(5)
2
以上就是python元组" title="python元组">python元组获取元素的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
以上是 python元组有哪些获取元素的方法 的全部内容, 来源链接: utcz.com/z/545023.html