Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Comparison Solution

If Statement order?

Hi. Is there a way to run the if and elif statements in a different order, so that all statements are checked to see which applies. At present, if I moved the "if fizz and buzz" below the "elif fizz", or "elif buzz" statements, and then entered the number 15, then it would just return it as a Buzz number.

1 Answer

Steven Parker
Steven Parker
229,732 Points

The tests in an "if .. else if" chain are always done in the programmed order, that's why it's important to program them correctly. In this case, the test for both conditions must be done before the tests for the individual conditions.