Skip to content

Instantly share code, notes, and snippets.

@vck

vck/x

Created March 30, 2015 14:32
Show Gist options
  • Select an option

  • Save vck/87355a61bb9d82fb0630 to your computer and use it in GitHub Desktop.

Select an option

Save vck/87355a61bb9d82fb0630 to your computer and use it in GitHub Desktop.
In [1]: def live(act,lazy=True):
...: if lazy == True:
...: pass
...: else:
...: return act
...:
In [2]: live('campus',False)
Out[2]: 'campus'
In [3]: live('campus,eat or eaten',False)
Out[3]: 'campus,eat or eaten'
In [4]: live('campus,eat or eaten',True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment