πŸ“š

 > 

⌨️ 

 > 

πŸ“±

3.7 Nested Conditionals

1 min readβ€’january 3, 2023

M

Minna Chow

M

Milo Chang


AP Computer Science Principles βŒ¨οΈ

80 resources
See Units

Nested conditional statements are conditional statements inside conditional statements. Within an if statement, you have another.

Nested Conditional Example

strawberries_in_fridge = 7 number_of_eggs = 12 if strawberries_in_fridge >= 7: print ("You can make strawberry shortcake!") if number_of_eggs < 12: print ("... if you go to the store first.") else: print ("So start baking!")
In this example, the program returns:
You can make strawberry shortcake! So start baking!
In this example, your program would return the line "You can make strawberry shortcake!" regardless of how many eggs you have because you have enough strawberries. It's only after this is confirmed that your program looks at the nested if statement.
It's important to note that nested if statements are part of the larger if statement themselves: none of the code would run if strawberries_in_fridge was less than 7. (This also means you need to be careful about your spacing when you write nested if statements to ensure that everything nests correctly.)
Browse Study Guides By Unit
πŸ•ΉUnit 1 – Creative Development
βš™οΈUnit 2 – Data
πŸ“±Unit 3 – Algorithms & Programming
πŸ–₯Unit 4 – Computer Systems & Networks
⌨️Unit 5 – Impact of Computing
✏️Frequently Asked Questions
πŸ“Exam Prep

Fiveable
Fiveable
Home
Stay Connected

Β© 2025 Fiveable Inc. All rights reserved.


Β© 2025 Fiveable Inc. All rights reserved.