1
Hello, I’m performing an exercise of Codecademy and I have to solve the following conditions:
- Match bool_one to False or not True and True result
- Match bool_two to False and not True or True result
- Match bool_three to True and not (False or False)
- Match bool_four to the result of not True or False and not True
- Match bool_five to False or not (True and True)
Follow my answers below:
bool_one = False
bool_two = False
bool_three = True
bool_four = True
bool_five = False
But the exercise validator is indicating that one or more answers are wrong.
which message appears when Voce tries to proceed?
– RFL
Be sure to have a value for each of the 5 variables!
– Renoir Reis