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

Kohei Ashida
Kohei Ashida
4,882 Points

Why should show_list() be put at the bottom of the line?

I thought show_list() should be just before break statement but the teacher says it should be at the bottom of the line. Is it not good to put just before the break statement? It seems there's no difference in the result between them.

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

You are correct that the call show_list() could also be placed in the β€œDONE” block before the break. For this code, the behavior would be equivalent. Which location is better depends on if more features get added to the code and whether those features would make one of the locations more convenient for the new flow control.

Post back if you need more help. Good luck!!!

Kohei Ashida
Kohei Ashida
4,882 Points

Thanks a lot for your quick reply! Now I got it that I'd better choose the location depending on what flow I want to make on each case.