FAQ: Control Flow - Boolean Operators: or

This community-built FAQ covers the “Boolean Operators: or” exercise from the lesson “Control Flow”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Analyze Financial Data with Python
Data Analyst
Learn Data Analysis for your Business
Data Scientist
Build Chatbots with Python
Build Python Web Apps with Flask
Computer Science

Learn Python 3
CS101 Livestream Series

FAQs on the exercise Boolean Operators: or

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in #get-help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to #get-help and #community:tips-and-resources. If you are wanting feedback or inspiration for a project, check out #project.

Looking for motivation to keep learning? Join our wider discussions in #community

Learn more about how to use this guide.

Found a bug? Report it online, or post in #community:Codecademy-Bug-Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

Is there any way to give feedback on exercises? There had been an exchange in a locked FAQ thread over the first part of the lesson:
1.
Set the variables statement_one and statement_two equal to the results of the following boolean expressions:
Statement one:
(2 - 1 > 3) or (-5 * 2 == -10)
Statement two:
(9 + 5 <= 15) or (7 != 4 + 3)

The lesson only asks you to copy/paste and submit to get a complete. If the intent is to get you to think about whether or not the resulting boolean value would be true or false, the exercise should give you feedback. Simply adding a print(statement_one) and print(statement_two) line would encourage actually thinking through the statements as well as giving immediate feedback on whether you had correctly determined the result.