Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sandy 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
216,718 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!