Skip to content

Instantly share code, notes, and snippets.

@nara-l
Created August 28, 2018 19:47
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 nara-l/2dcd9c569d0ca484a64db24d0c38e6ea to your computer and use it in GitHub Desktop.
Save nara-l/2dcd9c569d0ca484a64db24d0c38e6ea to your computer and use it in GitHub Desktop.
Tenary Operator Python 2.7 ( since 2.5 )
# tenary opeartor
foo = test? True: False
# python equivalent with if else on same line
foo = "True" if test else "False"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment