python元組有哪些獲取元素的方法

pswyjz發表於2021-09-11

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元組獲取元素的方法,希望對大家有所幫助。更多Python學習指路:

本文教程操作環境:windows7系統、Python 3.9.1,DELL G3電腦。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/755/viewspace-2829255/,如需轉載,請註明出處,否則將追究法律責任。

相關文章