Jak nazywa się metoda zastępowania []
operatora (notacja w indeksie dolnym) dla klasy w Pythonie?
python
operator-overloading
Sahas
źródło
źródło
__getslice__,
__setslice__` i__delslice__' have been deprecated for the last few releases of ver 2.x (not sure exactly when), and are no longer supported in ver 3.x. Instead, use
__getitem__.
__setitem__` i__delitem__' and test if the argument is of type
plasterek, i.e.:
jeśli isinstance (arg, slice): ...Szukasz
__getitem__
metody. Zobacz http://docs.python.org/reference/datamodel.html , sekcja 3.4.6źródło