Skip to content

Instantly share code, notes, and snippets.

View spencerjpotts's full-sized avatar
🏹

Spencer spencerjpotts

🏹
  • Zugzwang
  • Earth
View GitHub Profile
# cool
def swtich(case):
return {1: 'one', 2: 'two', 3: 'three'}[case]
# not so cool
def switch(case):
if case == 1:
return 'one'
elif case == 2:
return 'two'