美文网首页
元祖(tuple)的帮助文档

元祖(tuple)的帮助文档

作者: huojusan | 来源:发表于2018-05-14 14:55 被阅读8次
class tuple(object)
 |  tuple() -> empty tuple
 |  tuple(iterable) -> tuple initialized from iterable's items
 |
 |  If the argument is a tuple, the return value is the same object.
 |
 |  Methods defined here:
 |
 |  __add__(self, value, /)
 |      Return self+value.
 |
 |  __contains__(self, key, /)
 |      Return key in self.
 |
 |  __eq__(self, value, /)
 |      Return self==value.
 |
 |  __ge__(self, value, /)
 |      Return self>=value.
 |
 |  __getattribute__(self, name, /)
 |      Return getattr(self, name).
 |
 |  __getitem__(self, key, /)
 |      Return self[key].
 |
 |  __getnewargs__(...)
 |
 |  __gt__(self, value, /)
 |      Return self>value.
 |
 |  __hash__(self, /)
 |      Return hash(self).
 |
 |  __iter__(self, /)
 |      Implement iter(self).
 |
 |  __le__(self, value, /)
 |      Return self<=value.
 |
 |  __len__(self, /)
 |      Return len(self).
 |
 |  __lt__(self, value, /)
 |      Return self<value.
 |
 |  __mul__(self, value, /)
 |      Return self*value.n
 |
 |  __ne__(self, value, /)
 |      Return self!=value.
 |
 |  __new__(*args, **kwargs) from builtins.type
 |      Create and return a new object.  See help(type) for accurate signature.
 |
 |  __repr__(self, /)
 |      Return repr(self).
 |
 |  __rmul__(self, value, /)
 |      Return self*value.
 |
 |  count(...)  #元素个数统计
 |      T.count(value) -> integer -- return number of occurrences of value
 |
 |  index(...)  #查找元素下标
 |      T.index(value, [start, [stop]]) -> integer -- return first index of value.
 |      Raises ValueError if the value is not present.

其实tuple只有两个方法,count和index

>>> a
(1, 2, 3)
>>> a.count()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: count() takes exactly one argument (0 given)
>>> a.count(1)
1
>>> a = (1,1,1,2,3,4,5)
>>> a
(1, 1, 1, 2, 3, 4, 5)
>>> a.count(1)
3
>>> a.index(1)
0
>>> a.index(2)
3

相关文章

  • 元祖(tuple)的帮助文档

    其实tuple只有两个方法,count和index

  • Day_8-元祖、字典和集合

    一、元祖(tuple) 1.什么是元祖(tuple)定义:python提供的容器型数据类型,(元祖就是不可变的列表...

  • 2019-01-03元祖,字典集合

    一 Tuple(元祖) """1.什么是元祖(tuple)python提供的容器型数据类型,不可变并且有序。(元祖...

  • 01-03dict_tuple_set

    一:tuple(元祖) 1.什么是元祖(tuple) python提供的容器型数据类型,不可变并且有序。(元祖就是...

  • 元祖 (tuple)

    1.什么是元祖? (1)元祖就是不可变的列表,列表中除了可变的操作以外,其他操作都适用于元祖当元祖的元素只有一个时...

  • 元祖tuple

    列表属于可变序列,可以任意修改列表中的元素。元祖属于不可变序列,不能修改元祖中的元素,即元祖没有增加元素、修改元素...

  • Python入门笔记—第五章(元祖tuple,集合set,字典d

    第五章:元祖tuple,集合set,字典dict 1.元祖—tuple( ) 有序 可以访问,但是不能修改(指内容...

  • 2019-01-03 day8 tuple dict set 总

    01tuple 简单总结: tuple1 = () # 空元祖tuple1 = (1, 2, 'ab', 5...

  • 1-03 day Dict Tuple Set

    一.Tuple 1.什么是元祖(tuple) python提供的容器型数据类型,不可变并且有序。(元祖就是不可变的...

  • day-08 总结

    容器性数据 1.元祖(tuple) 1.什么是元祖(tuple) python提供的容器型数据类型,不可变并且有序...

网友评论

      本文标题:元祖(tuple)的帮助文档

      本文链接:https://www.haomeiwen.com/subject/dzxjdftx.html