Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. condition = True
  2. # condition = False
  3.  
  4. if condition:
  5. foo = 'Whatever'
  6. else:
  7. foo = 'Nevermind'
  8.  
  9. foo = 'Whatever' if condition else 'Nevermind'
  10.  
  11. foo = {True:'Whatever', False:'Nevermind'}[condition]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement