# -*- mode: snippet -*-
# name: __getitem__
# key: _getitem
# group: Special methods
# --
def __getitem__(self, key):
    return $0
