Python之元组方法
def count(self, value): # 计算元素出现的个数
""" T.count(value) -> integer -- return number of occurrences of value """
return 0
def index(self, value, start=None, stop=None): #获取指定元素的位置
"""
T.index(value, [start, [stop]]) -> integer -- return first index of value.
Raises ValueError if the value is not present.
posted on 2018-02-05 11:10 大道至简,规则无上。 阅读(116) 评论(0) 编辑 收藏 举报