#sample solution
# Assign `True` or `False` as appropriate on the lines below!
# not True
bool_one = False
# not 3**4 < 4**3
bool_two = True
# not 10 % 3 <= 10 % 2
bool_three = True
# not 3**2 + 4**2 != 5**2
bool_four = True
# not not False
bool_five = False
No comments:
Post a Comment