Skip to content

Instantly share code, notes, and snippets.

@nrjones8
Created November 25, 2018 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nrjones8/fd10a82ed184fd89aff53be74e730dfa to your computer and use it in GitHub Desktop.
Save nrjones8/fd10a82ed184fd89aff53be74e730dfa to your computer and use it in GitHub Desktop.
word = 'ravenclaw'
house = \
'Gryffindor' if 'gryffindor' in word else \
'Hufflepuff' if 'hufflepuff' in word else \
'Ravenclaw' if 'ravenclaw' in word else \
'Slytherin' if 'slytherin' in word else \
'some default value'
print house
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment