Skip to content

Instantly share code, notes, and snippets.

@craigcalef
Created December 4, 2020 23:08
Show Gist options
  • Save craigcalef/0c5d1857da2ed1f6d8975aa4f1e68fce to your computer and use it in GitHub Desktop.
Save craigcalef/0c5d1857da2ed1f6d8975aa4f1e68fce to your computer and use it in GitHub Desktop.
spengbob.py
>>> def spengbob(s):
... return "".join([c.lower() if i % 2 == 0 else c.upper() for i, c in enumerate(s)])
...
>>> spengbob("massachusetts")
'mAsSaChUsEtTs'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment