Example & Tutorial understanding programming in easy ways.

How we Handle the exception in Python ?

We can Handle the Exception by using the try except block.

- Try is a block where chances of exception will be possible.

- except is a block which execute when the exception is occur

program:

try:

    a=1/0

except:

    print("Error")


//output is Error

Read More →