Guest User

Untitled

a guest
May 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. >>> if x:
  2. ... print "asdf"
  3. ...
  4. asdf
  5. >>> if x is True:
  6. ... print "asdf"
  7. ...
  8. >>> if x == True:
  9. ... print "asdf"
  10. ...
  11. >>> x = 1
  12. >>> if x == True:
  13. ... print "asd"
  14. ...
  15. asd
  16. >>> if x is True:
  17. ... print "fe"
  18. ...
  19. >>>
Add Comment
Please, Sign In to add comment