yup. have no idea what to do
It's just asking you to read and continue.
The easiest way to remember "and" "or" result is this way:
with "and", both inputs need to be true so the result is true, otherwise it is false
with "or", both inputs need to be false so the result is false, otherwise it is true
think of having a variable called ageOfReflex
and ageOfReflex = 24
Now, I want to do something in the code if you happen to be older than 21
and younger than 30:
if( ageOfReflex > 21 and ageOfReflex < 30):
#do something here
We only do something if both conditions are true. If one of those conditions are not true, the if statement is false and we move on. In this case, ageOfReflex is 24, which is between 21 and 30 so we execute what's inside the if statement.
Now let's say I want to do something if you are younger than 20
or older than 30:
if( ageOfReflex < 20 or ageOfReflex > 30):
#do something here
Now, we do something if any of those two conditions are true. If both are false, the result is false and we move on without doing what you want to do. Since ageOfReflex is 24, it is not smaller than 20 or greater than 30, so we would never execute what we code in the if statement. If ageOfReflex was 33, we would execute it.