Section 1 - Instruction

Great work on understanding if, elif, and else! These help our code make choices based on different conditions, executing only one block of code from the chain.

Engagement Message

Ready to handle slightly more complex decisions?

Section 2 - Instruction

Sometimes, a single check isn't enough. What if you need to know if it's both cold and raining before deciding to stay inside? We need ways to combine conditions.

Engagement Message

Can you think of another decision needing multiple checks?

Section 3 - Instruction

Remember that in programming we use logical operators for this. The first one is and. A condition using and is True only if the conditions on both sides of the and are True.

Example: age > 18 and has_license == True. Both must be true!

Engagement Message

Make sense?

Section 4 - Practice

Type

Fill In The Blanks

Markdown With Blanks

Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal