__reversed__(self) – teskari tartibda joylashgan elementlardani borat iterator.
__contains__(self, item) – elementning konteynerga tegishliligini tekshirish (item in self).
105
Arifmetik operatorlarning haddan tashqari yuklanishi __add__(self, other) – qo‘shish. x + y x.__add__(y) ni chaqiradi. __sub__(self, other) – ayirish (x - y).
__mul__(self, other) – ko‘paytirish (x * y).
__truediv__(self, other) – bo‘lish (x / y).
__floordiv__(self, other) – bo‘linmaning butun qismi (x // y).
__mod__(self, other) – bo‘linmaning qoldig‘i (x % y).
__divmod__(self, other) – bo‘linmaning butun qismi va qoldig‘i (divmod(x, y)).
Do'stlaringiz bilan baham: |