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 trialSandy Leon
2,246 Pointssys.exit() vs. break
What benefits does using sys.exit() have over using break in this particular problem? For example I did if attempt_count == 3: print("Too many attempts! Try again later!") break Would it have been better to use sys.exit()?
1 Answer
Steven Parker
231,198 PointsA "break" is only allowed in a loop, and it causes the loop to end but the rest of the program continues.
On the other hand, "sys.exit()" can be used anywhere and it causes the entire program to end.
Sandy Leon
2,246 PointsSandy Leon
2,246 PointsOhhh Ok. It just so happened that both worked the same way in my particular program haha. Thanks!