Advertisement
DrBenana

Untitled

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