class test: def func(self, *index): return index def __getitem__(self, *index): return index t = test() print(t.func(1)) # (1,) print