Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eclecticmiraclecat/ed2c3ded82734615f328e35569c4218c to your computer and use it in GitHub Desktop.
Save eclecticmiraclecat/ed2c3ded82734615f328e35569c4218c to your computer and use it in GitHub Desktop.

if else

name = 'alice'

if name == 'bob':
    num = 1
elif name == 'alice':
    num = 2
else:
    num = 3

dictionary

name = 'alice'
options = {'bob': 1, 'alice': 2}

num = options.get(name, 3)

performance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment