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 trialAndy McDonald
Python Development Techdegree Graduate 13,801 PointsCategory/vocabulary question:
I'm trying to make organized notes. As len and round are functions what is try, if, and except to?
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsCorrect. len and round are built-in functions.
try/except and if are called compound statements.
The Python docs are a great source of information.
Post back if you need more help. Good luck!!!
Peter Vann
36,427 PointsHi Andy!
I believe Assert, Raise, Try, Except, Else, and Finally all just fall under the general category of "Exceptions" (And/or "Error Handling" and/or "Exception Control Flow").
The whole idea is that it is conditional code you can put in your program that if something goes "off-the-rails" (fails/errors), your program (execution) won't grind to an abrupt halt.
More info:
https://realpython.com/python-exceptions/
http://tutors.ics.uci.edu/index.php/79-python-resources/104-try-except
https://www.geeksforgeeks.org/try-except-else-and-finally-in-python/
I hope that/these help(s).
Stay safe and happy coding!
Chris Freeman
Treehouse Moderator 68,441 PointsNot correct.