This is from the tutorial from codecademy. The Instructions are:
Write an if statement in the_flying_circus(). It must include:
- if, elif, and else statements;
- At least one of and, or, or not;
- A comparator (==, !=, <, <=, >, or >=);
- Finally, the_flying_circus() must return True when evaluated.
Don't forget to include a : after your if statements!
So you have to fill the underlined parts with comparison like 34 > 33. And use the comparators, which are asked. Your function should always return True so write a comparison like 1 > 0 in the if or in the elif statements, which is always true. But maybe you stuck somewhere else or forgot a colon.
Hope i could help you. Otherwise explain where you stuck.