Guest User

Untitled

a guest
Dec 13th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. a = None
  2.  
  3. b = 'Test'
  4.  
  5. if a is None or b is None:
  6. print('Test')
  7.  
  8. if (a or b) is None:
  9. print('Test')
Add Comment
Please, Sign In to add comment