|
Orbits
1
|
Public Member Functions | |
| def | __getitem__ |
| def | __iter__ |
| def | __contains__ |
| def | __reversed__ |
| def | index |
| def | count |
Public Member Functions inherited from _abcoll.Sized | |
| def | __len__ |
| def | __subclasshook__ |
Public Member Functions inherited from _abcoll.Iterable | |
| def | __iter__ |
| def | __subclasshook__ |
Public Member Functions inherited from _abcoll.Container | |
| def | __contains__ |
| def | __subclasshook__ |
All the operations on a read-only sequence. Concrete subclasses must override __new__ or __init__, __getitem__, and __len__.
| def _abcoll.Sequence.__contains__ | ( | self, | |
| value | |||
| ) |
| def _abcoll.Sequence.__getitem__ | ( | self, | |
| index | |||
| ) |
| def _abcoll.Sequence.__iter__ | ( | self | ) |
| def _abcoll.Sequence.__reversed__ | ( | self | ) |
| def _abcoll.Sequence.count | ( | self, | |
| value | |||
| ) |
| def _abcoll.Sequence.index | ( | self, | |
| value | |||
| ) |
S.index(value) -> integer -- return first index of value. Raises ValueError if the value is not present.
1.8.3.1
Copyright 2014 Google Inc. All rights reserved.