Skip to content

Instantly share code, notes, and snippets.

@Linus-Albertus
Created July 19, 2019 22:45
Show Gist options
  • Save Linus-Albertus/fc23744a7497153a26dc4315ed15e0c8 to your computer and use it in GitHub Desktop.
Save Linus-Albertus/fc23744a7497153a26dc4315ed15e0c8 to your computer and use it in GitHub Desktop.
[conditional one-liner] An one-liner conditional #python #conditional
y = 'high' if x > 6 else 'medium' if x == 6 else 'low'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment