Learn Python EXCEPTION HANDLING in 5 minutes! 🚦

preview_player
Показать описание
# exception = An event that interrupts the flow of a program
# (ZeroDivisionError, TypeError, ValueError)

try:
number = int(input("Enter a number: "))
print(1 / number)
except ZeroDivisionError:
print("You can't divide by zero IDIOT!")
except ValueError:
print("Enter only numbers please!")
except Exception:
print("Something went wrong!")
finally:
print("Do some cleanup here")
Рекомендации по теме
Комментарии
Автор

# exception = An event that interrupts the flow of a program
# (ZeroDivisionError, TypeError, ValueError)
# 1.try, 2.except, 3.finally

try:
number = int(input("Enter a number: "))
print(1 / number)
except ZeroDivisionError:
print("You can't divide by zero IDIOT!")
except ValueError:
print("Enter only numbers please!")
except Exception:
print("Something went wrong!")
finally:
print("Do some cleanup here")

BroCodez
Автор

Hey man, just recently discovered your videos and the quality is insane. The way you explain things really sets you apart from other videos in the coding tutorial space.
Would love to see a video covering git since i really want to use it but as soon as something goes wrong (so exactly where git should help you) i dont understand it anymore xD
keep up the great work!

felixg
Автор

A true Chad, we all love and thank you for you

aliyaperetch
Автор

THE FINALLY BLOCK RUNS. NO. MATTER. WHAT.

olivergrim
Автор

Finally I am clear this concept. Thanks Bro for this video🎉

veereshmtl
Автор

Can you do a DSA series for Python please? Your tutorials are always straight to the meat with no fluff.

Or is that already done?

leonaise
Автор

Nice video. Your video is very knowledgeable.

Naveenika
Автор

Very helpful video sir. Please can you teach next Typescript

studywithshireen
Автор

Hi do you plan on doing Express & Node tutorials?

zepredos
Автор

Brother you know c, c++, java, python
You have all the skills that people dream of
So I had a question that do work at a company for living or what do you do for living ?
✨️💜

deepak.mdr_
Автор

I am your first commenter! Pls Pin Me!!!

BunrithViwatthanak