# Create comparative statements as appropriate on the lines below!
# Make me true!
bool_one = 3 < 5 # We already did this one for you!
# Make me false!
bool_two = 1 == 2
# Make me true!
bool_three = 1 != 2
# Make me false!
bool_four = 1 > 2
# Make me true!
bool_five = 2 >= 1
I copied that off of my lesson… I still can’t get to the next one.
Hi @elizabethstout632276,
What’s the error message you’re getting? Please post it and a link to the exercise you’re on.
2 Likes
I cannot proceed.
Assign True or False as appropriate on the lines below!
Set this to True if 17 < 328 or to False if it is not.
17 < 328 True
17 > 328 False
bool_one = True # We did this one for you!
Set this to True if 100 == (2 * 50) or to False otherwise.
100 == (2 * 50) True
100 != (2 * 50) False
bool_two = True
Set this to True if 19 <= 19 or to False if it is not.
19 <= 19 True
19 != 19 False
bool_three = True
Set this to True if -22 >= -18 or to False if it is not.
-22 >= -18
True
bool_four = False
Set this to True if 99 != (98 + 1) or to False otherwise.
99 != (98 + 1) True
bool_five = False