Advertisement
DrBenana

Untitled

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