Skip to content

Instantly share code, notes, and snippets.

@Emilgardis
Last active August 29, 2015 14:24
Show Gist options
  • Save Emilgardis/b02e4583f9b2624c08a4 to your computer and use it in GitHub Desktop.
Save Emilgardis/b02e4583f9b2624c08a4 to your computer and use it in GitHub Desktop.
Good python snippets
def memoize(f):
def wrapped(*args, **kwargs):
if hasattr(wrapped, '_cached_val'):
return wrapped._cached_val
result = f(*args, **kwargs)
wrapped._cached_val = result
return result
return wrapped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment