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 trialMinseok Kim
2,708 PointsValue error, name error, type error?
What are these?
1 Answer
Alexander Davison
65,469 PointsAs in most programming languages, Python has multiple kinds of errors.
-
ValueError
usually refers to an invalid value passed into a function, e.g. if you try to execute the statementint('a')
, Python will throw aValueError
('a'
is not appropriate for converting into an integer). -
TypeError
refers to a mismatch in types. (Types are the "kinds" of values, e.g. numbers [integers], decimals [floats], pieces of text [strings], etc.) For example, if you try to add an integer to a string, you get aTypeError
. - Python throws a
NameError
if you try to access a non-existent variable.
A list of built-in errors can be found in the official Python documentation