Kasante95

compound_boolean_exp

Feb 11th, 2023 (edited)
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. and_compare = (monsters == 3) and (coins == 4)
  2. or_compare = (monsters == 7) or (coins == 4)
  3. print(and_compare)
  4. print(or_compare)
Advertisement
Add Comment
Please, Sign In to add comment