Skip to content

Instantly share code, notes, and snippets.

@ehermes
Created February 17, 2016 19:28
Show Gist options
  • Select an option

  • Save ehermes/81e98a61caa285707810 to your computer and use it in GitHub Desktop.

Select an option

Save ehermes/81e98a61caa285707810 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from __future__ import print_function, division
class MultiplyBy(object):
def __init__(self, n):
self.n = n
def __getitem__(self, i):
return self.n * i
multiply_by_two = MultiplyBy(2)
print(multiply_by_two[7])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment