Advertisement
KodingKid

Python Booleans - True or False?

Apr 18th, 2021
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. print(549 < 438) #True
  2. print(350 > 530) #False
  3. print(438 == 522) #False
  4. print(348 == 348) #True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement