Hello, I'm doing a codecademy exercise and I have to solve the following conditional ones:
- Equal bool_one to False result or not True and True
- Equal bool_two to False result and not True or True
- Equals bool_three to the result of True and not (False or False)
- Equal bool_four to the result of not True or False and not True
- Equal bool_five to the result of False or not (True and True)
Here are my answers:
bool_one = False
bool_two = False
bool_three = True
bool_four = True
bool_five = False
But the validator of the exercise is indicating that one or more answers are wrong.