Wie heißt die Methode zum Überschreiben des []
Operators (Indexnotation) für eine Klasse in Python?
python
operator-overloading
Sahas
quelle
quelle
__getslice__,
__setslice__` und__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__` und__delitem__' and test if the argument is of type
Slice, i.e.:
if isinstance (arg, Slice): ...Sie suchen nach der
__getitem__
Methode. Siehe http://docs.python.org/reference/datamodel.html , Abschnitt 3.4.6quelle