1. 程式人生 > >python3元組方法統計

python3元組方法統計

pre pri ret blog doc gif 異常 sel real

1、count()

  • 官方說明:
技術分享
    def count(self, value): # real signature unknown; restored from __doc__
        """ T.count(value) -> integer -- return number of occurrences of value """
        return 0
View Code

描述:查找指定元素的索引位置

參數:value 指定的元素

返回值:返回指定元素的索引位置,若沒元組中沒有這個元素則返回0

  • 示例:
t = (‘william‘,‘lisa‘,‘knight‘,‘pudding‘)
t2 = t.count(‘lisa‘)
print(type(t2),t2)
t3 = t.count(‘xxxxx‘)
print(type(t3),t3)

  輸出結果:

技術分享
<class int> 1
<class int> 0
View Code

2、index()

  • 官方描述:
技術分享
    def index(self, value, start=None, stop=None): # real signature unknown; restored from __doc__
        """
        T.index(value, [start, [stop]]) -> integer -- return first index of value.
        Raises ValueError if the value is not present.
        
""" return 0
View Code

描述:和count()一樣,查找指定元素的索引位置,不同點是如果元組裏沒有這個元素則會拋異常

參數:value 指定的元素

返回值:返回指定元素的索引位置,若沒元組中沒有這個元素則拋異常

示例:

t = (‘william‘,‘lisa‘,‘knight‘,‘pudding‘)
t2 = t.index(‘lisa‘)
print(type(t2),t2)

  輸出結果:

技術分享
<class int> 1
View Code

python3元組方法統計