Advertisement
DrBenana

Untitled

Sep 22nd, 2020
662
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. print(1==1)
  2. # Output => True
  3.  
  4. print(2==1)
  5. # Output => False
  6.  
  7. print("ben" == "python")
  8. # Output => False
  9.  
  10. print("1" == 1)
  11. # Output => False
  12.  
  13. x = 1
  14. print(x == 1)
  15. # Output => True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement