Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. >>> True = False
  2. >>> False = True
  3. >>> True
  4. False
  5. >>> False
  6. False
  7.  
  8. ////
  9.  
  10. >>> True, False = False, True
  11. >>> True
  12. False
  13. >>> False
  14. True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement