ValueError

A ValueError is raised when an object is of the right type, but contains an inappropriate value.

We've seen this already when trying to construct an int from a non-numeric string:

>>> int("jim")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: 'jim'
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset