Try Except Exception Handling In Python | Python Tutorials For Absolute Beginners In Hindi #24

preview_player
Показать описание


Best Hindi Videos For Learning Programming:

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

try-except is very useful in hiding the error in exam😆

SPEEDMACHGAMINGkg
Автор

'''Tip for everyone
After writing '''except Exception as e:
'''You can '''print("Enter a valid input")

harpreetkaur
Автор

Aik Dum Cool Way me Ap ne Sumjha Diya Sir.Harry Thank you so much.

moviesinhindi
Автор

For some reason, i never clearly understood try-except from any videos.
This helped me clearly!
Thanks Harry :)

tanishamishra
Автор

Thank you so much sir, to solve long lasting pending confusion. Thanks again sir.

ManpreetKaur-gykl
Автор

Mazza aa gaya harry bhai sab samajh aa gaya ab tak. is tut tak meine 3 din mei khatam kar diya

kushaljhunjhunwala
Автор

I salute you sir bcz your way of teaching is astonish

MuhammadKhan-rjfb
Автор

thankyou so much for simple explanation, it was very useful.

aartidongare
Автор

num1 = int(input("enter your first number\n"))
try:
num2 = int(input("enter your second number\n"))


print("This is the sum of num1 and num2=", num1+num2)

except Exception as e:
print(e)


print ("This line is very important")

investonomy
Автор

Awesome way of explanation. Great work bro.

jwbthrd
Автор

maine kuch din hua python learning start kiya aur bahut chaneel youtube par study kiya and bahut website exm- www.w3school.com but yea channel bahut bahut achha laga keuki sir up jo yea example ki sath wrong and right ka jo diffrences de rahe ho na yah bahut samaj ne kiliye simple hota hain.i like ur channel sir,

monimoydeb
Автор

Thanks for the video sir amazing as always :)

vanshrana
Автор

Bhot mast sikaya bhai ❤️❤️😭 love you 🔥🙏🏻🔥🔥

ayushparmar
Автор

harry bhai bahut sahi samjha rahe ho yaar par aisa kuch bhi karo jaise tweepy library ka use karke twitter pe tweets post karna twitter ka data read karna yeh sab bhi kardo bhai main yeh seekh raha hun aajkal bhai yeh sab...

pranjalchandel
Автор

v1="tryin try and except"
print(v1.upper())
i=18
v2=1
while(v2<=5):
try:
v3=int(input("the num that you want to enter\n"))
v4=int(input("the second nu that you wna enter\n"))
if v5=="+":
print(v3+v4)
except Exception as e:
print("lets tryin")
#harry is god for me

GhostMario
Автор

Holy 🐄, you are just going to hit 1M.

piyushnaithani
Автор

#Try and except for phython
print ("Enter first number")
num1=int(input ())
print ("Enter second number")
num2=int(input ())
try:
print ("The sum of two numbers is" num1+num2)
except expection as e :
print("Harry bhai your god")

subodhfulzele
Автор

plz make a playlist of opencv and object recognition

robocodemore
Автор

a=int(input("Enter first number \n"))
b=(input("Enter second number \n"))
try:
print("Sum of these two numbers is ", int(a)+int(b))
except Exception as k:
print(k)
print("Hello world")

cooldude