Mastering Python (98 Blogs) Become a Certified Professional

Exceptions in Python

Last updated on May 06,2020 7.1K Views


What is an Exception?

An Exception is an error that happens during the execution of a program. Whenever there is an error, Python generates an exception that could be handled. It basically prevents the program from getting crashed.

Why use Exceptions?

Many a time, there are valid as well as invalid exceptions. Exceptions are convenient in many ways for handling errors and special conditions in a program. When you think that you have a code which can produce an error, you can use exception handling technique.

Raising Exceptions in Python

You can raise an exception in your program by using the raise exception statement. Raising an exception breaks current code execution and returns the exception back until it is handled.

Common Exception Errors

IOError (Input Output Error) – If the file cannot be opened

ImportError – If Python cannot find the module

ValueError – Raised when the user hits the interrupt key (normally ctrl+c or delete)

EOFError (End of File Error) – Raised when one of the built-in functions (input() or raw_input()) hits an end-of-file condition (EOF) without reading any data.

Got a question for us? Mention them in the comments section and we will get back to you.

Related Posts

Introduction to Strings in Python

Start Learning Python

Upcoming Batches For Data Science with Python Certification Course
Course NameDate
Data Science with Python Certification Course

Class Starts on 13th February,2023

13th February

MON-FRI (Weekday Batch)
View Details
Data Science with Python Certification Course

Class Starts on 25th February,2023

25th February

SAT&SUN (Weekend Batch)
View Details
Comments
0 Comments

Join the discussion

Browse Categories

webinar REGISTER FOR FREE WEBINAR
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP

Subscribe to our Newsletter, and get personalized recommendations.

image not found!
image not found!

Exceptions in Python

edureka.co