# -*- mode: snippet -*-
# name: _pow
# key: _pow
# group: Special methods
# --
def __pow__(self, other, modulo=None):
    return $0
