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 Introducing Lists Build an Application Display the List

Efficiency, Continue vs if else ?

In the shopping_list app, we could add an item in the else block instead of using continue. Which one is more efficient? using continue or adding item in the else block?

I think using continue is more efficient since we go to the next iteration without checking other conditions.

1 Answer

Steven Parker
Steven Parker
229,732 Points

It might be slightly more efficient, but efficiency is usually not a concern when user input is being processed. The human is extremely slow by computer terms, so most of the computer's time is spent just waiting.

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

Excellent point. Modern processor are so fast that they actually can go into sleep mode between keystrokes to save power. Of course, that was before all the crazy background apps took over.