# -*- mode: snippet -*-
# name: __iand__
# key: _iand
# group: Special methods
# --
def __iand__(self, other):
    return $0
