Skip to content

Instantly share code, notes, and snippets.

@clauswrm
Created December 9, 2017 20:43
Show Gist options
  • Save clauswrm/baba1adc1c76e5a233e60d5b3f8a095b to your computer and use it in GitHub Desktop.
Save clauswrm/baba1adc1c76e5a233e60d5b3f8a095b to your computer and use it in GitHub Desktop.
def sean_paul(levels=0): return 'Sean %s Paul' % ('"' + sean_paul(levels=levels - 1) + '"') if levels > 0 else 'Sean Paul'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment