Sir your teaching style is innovative and the tidbits that you say in-between is what makes you a great teacher. I've been taught by many teachers and I can say the level at which teach, for which other teachers get paid a lot, but you deliver all this for free is commendable. Thank you very much Sir for rejuvenating my passion for Python.
So I am slowly approaching the end of your Python course, Sir, and I have to thank you. I have started just a few weeks ago as a total beginner, and because of you, I can now write a simple applications, and (and that's most important) I can think as a programmer which made learning other languages a lot easier for me. Thank you, Sir Navin Reddy
Telusko = 1 Navin_Reddy_Sir = 100 try: print("Telusko + Navin_Reddy_Sir") except: print("you don't have any errors, Sir.") finally: print("you are still the best")
a=5 b=2 try: print("resource open") print(a/b) k=int(input("enter a number")) print(k) except ZeroDivisionError as e: print("Hey, you cannot divide a number by zero",e) except ValueError as e: print("Invalid input", e) except Exception as e: print('something went wrong...',e) finally: print('resource closed')
Great explanation. Also I like all your catch phrases. Eg, "Hold on" and "For those with Java, C++ background will be familiar with this" and "You might be wondering" and "What would happen if" and "Oh thats weird, what if i do this.."
A good class that can easily confuse if one is not careful.....otherwise you are Mr Good in this field, as a starter, I feel challenged to when I will be there. Again thanks to my classmates because the comments we write here are also resourceful by far when I read, understand and run them, I get informed of extra things. Big up guys.
Sir you are great with thier easy explanation.i learn most of the thing in python for your channel .it is very good and easy to understand. Thank you sir...
very crisp explanation. Small and simple examples which I was easy to get an understanding, i.e the fridge concept= open a door take a bottle then close it.
You have cleared that concept of try and catch in a best possible way. I was lot of confused in that exception topic but you have cleared the every thing. hats off to you sir. And your way of teaching is absolutely excellent.
Everytime I view your tutorials I just make sure make sure to click that big fat like button and I move to watch that video you're simply awesome it's just a crystal clear thankyou sir
Navin Sir I am just a 15-year-old kid interested in programming. In school, we are taught JAVA language. I know the basics but still, you teach so well that in my 10th grade currently sitting at home during the lockdown I stay awake until 11:00 pm after completing the studies just because u teach with so many interesting real-life examples. So just love the way u teach. I have watched 63 videos in 8 days. I am really enjoying. Thank u!!!!!!!!
@Aanshumaan Shrijai VII C Roll No. 37 Thats Good!! I was told one thing you know by one of my connections on LinkedIn just to motivate you here is the thing: Udit Rathod You should explore never stop exploring ... just keep in mind you have to be Dora the explorer because that's what I do. That's the man UDIT RATHOD who told me pretty inspiring things!! If possible connect with me on LinkedIn we can discuss a lot of things!! You can also get ideas from me we can exchange challenges lot more.
It's always good practice to write specific exception which we aware. If we don't know what kind of error will occur then Parent Exception.. Taught by Naveen Automation Labs.. same theory by Naveen Reddy.. Both were awesome in teaching.. 👍👍👍
Hi Navin, you throw in a lot motivational points and give us a very clear picture of what exceptions are, why you might need them and you provide basic usage of the python 'try'-'except' construct. Very well done! Now I feel fully prepared to try out some examples myself ( which I have already ...) as well as explore the nitty gritty details in the python documentation for specific applications and problems. WELL EXPLAINED, WELL DONE and THANK YOU!!
Navin your videos are amazing. Navin, please specify else block as well. i.e, try block for checking any error, except block will handle the error, else block will execute if there is no error, and finally block will excecute regardless the result of try and except block.
Also ,always write general Exception block after writing Dividebyzero,ValueError block ,etc block Bcoz if by mistake you write it first no matter how much block you write after it, it will always print statement in general exception block .
Now I'm recollecting this topic which was taught in class and could make sense with more brevity and logic. Had I watched this earlier, I'd have scored more in exam.
I am coming from a completely non CS background . That's why it's taking more time for me..but thanks to Navin sir that my concepts are getting cleared..
I thought the same but it does look tidier to the eye... as a logical block of code before embarking on some other idea... kind of like paragraphs in writing prose...
If you do not have the finally clause and you get an error the file won't close. Finally ensures that regardless of the errors taking place in the program , it would perform the task mentioned.
@@aryanfalke5751 i think that u had failed to understand the question correctly. he is asking that what is the need of finally, if we just simply put the 'resource closed' statement outside all the blocks of try and except.
Let just say in your except block you mentioned only 1 type of error ( Value error) and when you run the code you divided any number with 0 In that case the "resource close" statement not going to run Finally: ensure that every last block of code execute even if there are multiple errors
*See if you write 'resource closed' outside then it will get printed only when there is not an error because the execution stops when there is an error previously*
Thanks and appreciate you Sir for ur effort. I have the same question which Abhi asked. Will you upload videos on NumPy, pandas and other libraries. How much python knowledge we should require to get started with a job in python? Do we require knowledge of all libraries and framework like Django, pylons? To start a job in python what we skillset do we actually require in python. Please guide SIR..Thanks a lot
Hey Telusko, got an incorrect output please check it: It is not asking for input in following case: a=5 b=0 try: print("Resource opened") print(a/b) k=int(input("Enter a number :")) print(K) except ZeroDivisionError as e: print("Hey, error and cause of error is :",e) except ValueError as e: print("Hey, Invalid Input :",e)
except Exception as e: print("Hey Something went wrong :",e)
finally: print("resource closed") output: Resource opened Hey, error and cause of error is : division by zero resource closed Question is here why it is not asking me to enter a number K ?
mamulu racha kadu, I was almost ready to pay for python classes and i found this channel. THE BEST channel to learn coding.
Sir your teaching style is innovative and the tidbits that you say in-between is what makes you a great teacher.
I've been taught by many teachers and I can say the level at which teach, for which other teachers get paid a lot, but you deliver all this for free is commendable.
Thank you very much Sir for rejuvenating my passion for Python.
I literally learned the entire python language through your videos. Tysm for great videos and simplified explanation
@@etcetc3800 what r u doing here ....! Then
Bullshit
@@etcetc3800 bruh
Itna to college wale bhi nahi karate jitna navin ji samjha dete h ❣️❣️❣️
So I am slowly approaching the end of your Python course, Sir, and I have to thank you. I have started just a few weeks ago as a total beginner, and because of you, I can now write a simple applications, and (and that's most important) I can think as a programmer which made learning other languages a lot easier for me. Thank you, Sir Navin Reddy
Telusko = 1
Navin_Reddy_Sir = 100
try:
print("Telusko + Navin_Reddy_Sir")
except:
print("you don't have any errors, Sir.")
finally:
print("you are still the best")
High IQ comment
It was always confusing for me about the error handling. You made it crystal clear today. I like your simplicity in teaching complex concepts.
Mr Perfect = Navin Reddy Sir
Python=Navin reddy sir💕
u made easier sir better than my teachers or frnds thanks a lot
"The general doctor" 👍
Nicely put. My compliments!
a=5
b=2
try:
print("resource open")
print(a/b)
k=int(input("enter a number"))
print(k)
except ZeroDivisionError as e:
print("Hey, you cannot divide a number by zero",e)
except ValueError as e:
print("Invalid input", e)
except Exception as e:
print('something went wrong...',e)
finally:
print('resource closed')
You really have a knack for teaching ...brilliant
Great explanation.
Also I like all your catch phrases. Eg, "Hold on" and "For those with Java, C++ background will be familiar with this" and "You might be wondering" and "What would happen if" and "Oh thats weird, what if i do this.."
Thank you very much for this tutorial! It was that part of coding what I have never understood exactly, until I've seen your video!
I have started loving python because of your teaching sir hats off to you🙏🙏🙏🙏🙏
You're a great instructor, thanks for sharing these concepts in a way that beginners can actually understand :)
A good class that can easily confuse if one is not careful.....otherwise you are Mr Good in this field, as a starter, I feel challenged to when I will be there. Again thanks to my classmates because the comments we write here are also resourceful by far when I read, understand and
run them, I get informed of extra things. Big up guys.
The best video for Exception handling in TH-cam. Nailed it sir.
i wish i had a teacher like u in my school!!!!!!!!!!!!
Sir you are great with thier easy explanation.i learn most of the thing in python for your channel .it is very good and easy to understand.
Thank you sir...
very crisp explanation. Small and simple examples which I was easy to get an understanding, i.e the fridge concept= open a door take a bottle then close it.
The most intriguing and easy going class so far
You are a very good teacher, the way you explain with simplicity is awesome.
You’re the best teacher in the world. Tutors in Udemy should take note from this lovely man.
A good teacher doesn't need a whole day for any good concept simply this much time is enough
Thank you sir 👍
Nice videos Navin sir
These are very helpful to me. Thank you a lot for your hard work.
Sir your videos clearly shows you interest in learning new techs and the deep knowledge you have
Navin sir :- God of Programming for me.....Helped me get through interview and many concept 😘
This is how you teach. keep it basic/simple. Thanks, great job.
*Best video in this topic*
Thank You Sir
Phenomenal explanation... This guy doesn't throw unhandled error.
Can I like this a million times? Thank you Telusko!
Hello Sir your way of teaching and the presentation is amazing 👍👍
Great teaching style sir all doubts are clear👌👌👍👍👍👍🎂
You have cleared that concept of try and catch in a best possible way. I was lot of confused in that exception topic but you have cleared the every thing. hats off to you sir. And your way of teaching is absolutely excellent.
i was struglling with this topic from long time. u made it just like clear water. thank u
I understand this topic only by ur video, thanks a lot
Everytime I view your tutorials I just make sure make sure to click that big fat like button and I move to watch that video you're simply awesome it's just a crystal clear thankyou sir
I m learning python 1st time from your Chanel .. it’s really helpful ..thank you sir
Nice explanation sir.... Thank u so much🤗
Navin Sir I am just a 15-year-old kid interested in programming. In school, we are taught JAVA language. I know the basics but still, you teach so well that in my 10th grade currently sitting at home during the lockdown I stay awake until 11:00 pm after completing the studies just because u teach with so many interesting real-life examples. So just love the way u teach. I have watched 63 videos in 8 days. I am really enjoying. Thank u!!!!!!!!
@Aanshumaan Shrijai VII C Roll No. 37 Thats Good!! I was told one thing you know by one of my connections on LinkedIn just to motivate you here is the thing:
Udit Rathod
You should explore never stop exploring ... just keep in mind you have to be Dora the explorer because that's what I do.
That's the man UDIT RATHOD who told me pretty inspiring things!! If possible connect with me on LinkedIn we can discuss a lot of things!! You can also get ideas from me we can exchange challenges lot more.
@Aanshumaan Shrijai VII C Roll No. 37 Then how can we be in contact?
sir ,you have versatility in the teaching and i am lucky to see this channel
I love your teaching style, clear and and easy to understand
Sir 🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻The way you are teaching 👌🏼👌🏼👌🏼👌🏼NAA buthoo na bavishyath🤝🤝🤝🤝✊✊
It's always good practice to write specific exception which we aware. If we don't know what kind of error will occur then Parent Exception.. Taught by Naveen Automation Labs.. same theory by Naveen Reddy.. Both were awesome in teaching.. 👍👍👍
This was so much effective for my learning. It helped a lot. Effortless teaching
your explanation is great sir. understood the whole concept clearly
thank you
Very clear explanation Sir...Thanks a Lotttttttttttttttttttt Sir
Hi Navin,
you throw in a lot motivational points and give us a very clear picture of what exceptions are, why you might need them and you provide basic usage of the python 'try'-'except' construct. Very well done! Now I feel fully prepared to try out some examples myself ( which I have already ...) as well as explore the nitty gritty details in the python documentation for specific applications and problems. WELL EXPLAINED, WELL DONE and THANK YOU!!
u r great .. i got ur explanation from a first time without repeat the video 😍 thank u so much ❤️
Fridge example 👏🏻👏🏻 is very practical
Thank you Sir!!
thank you so much, i was able to figure out my hw because of this video
Amazing Teaching skill. God bless you sir.
Navin your videos are amazing.
Navin, please specify else block as well. i.e, try block for checking any error, except block will handle the error, else block will execute if there is no error, and finally block will excecute regardless the result of try and except block.
I learnt all python by you... thank you so much....very helpful videos for me...
Tqq so much sir. You nailed it.i didn't understood this concept java but you made it clear in Python
as you always mentioning about it, i will learn java after completion of this course, for sure.
Thanks for giving free excellence course for all
Perfect example of learning and enjoying things
Great examples Naveen. The doctor and fridge comparisons really made it easy to understand!!
YOU ARE AND YOUR TEACHING IS REALLY GREAT SIR
Very nice and clear explanation. the main thing is it's a very short video as compare to other creater.
I'm very grateful
Thank you so much sir for great explanation ,
Excellent explanation. You are an extraordinary teacher🙏
Best video ever seen for exception handeling
Dear sir!
you deserve much.
Thanks a lot
the practical world understanding of software world you provide as in explaining finally snippet is awesome man, too too cool man
Also ,always write general Exception block after writing Dividebyzero,ValueError block ,etc block
Bcoz if by mistake you write it first no matter how much block you write after it, it will always print statement in general exception block .
Sir ur teaching is really awesome.
Thanku so much sir.
Python is interesting when u r taught by the right person 👍. (Navin sir)
Best video so far
Now I'm recollecting this topic which was taught in class and could make sense with more brevity and logic. Had I watched this earlier, I'd have scored more in exam.
I am coming from a completely non CS background . That's why it's taking more time for me..but thanks to Navin sir that my concepts are getting cleared..
Simply simplified my doubt
Waah you taught it in very understandable way. Super sir
what is the need of finally: if we can just print('resource closed") outside will that make sense?
I thought the same but it does look tidier to the eye... as a logical block of code before embarking on some other idea... kind of like paragraphs in writing prose...
If you do not have the finally clause and you get an error the file won't close. Finally ensures that regardless of the errors taking place in the program , it would perform the task mentioned.
@@aryanfalke5751 i think that u had failed to understand the question correctly. he is asking that what is the need of finally, if we just simply put the 'resource closed' statement outside all the blocks of try and except.
Let just say in your except block you mentioned only 1 type of error ( Value error) and when you run the code you divided any number with 0
In that case the "resource close" statement not going to run
Finally: ensure that every last block of code execute even if there are multiple errors
*See if you write 'resource closed' outside then it will get printed only when there is not an error because the execution stops when there is an error previously*
Very good explanation sir .thank you.
Wow. A big thumbs up for this video. Made my day.
Thank you.
Best explanation I found so far. Thank you
chala teluskunnam thank you. you're the best
Thank you, I understood errors and exception. Great explanation!
Thank you so much man! You just saved my weekend!
I like the way you explain things.
Nice video
Best explanation that i have ever seen on youtube
Best python teaching.. Love the way of teaching...🖤🖤
I will never forget the example i have been watching your playlist best method to convey the concepts of oops
very clear and concise, awesome.
Pretty clear explanation; thanks for sharing your knowledge.
Great teaching style! hats off for simplifying this concept✌
Your teaching is so awesome 🎉
Hey I want to say - You are awesome best 14 min invested ever good tutorial for exception
sir your teaching style is so good.
Python is easy, you made it easier for me..Thanks
Thank you dear Navin. Very helpful and easy to understand.
thank you for this lesson, well digested
Superb Explanation. Awesome sirji...mazza aa gaya
So nicely you explain. Very helpful
Thanks and appreciate you Sir for ur effort. I have the same question which Abhi asked. Will you upload videos on NumPy, pandas and other libraries. How much python knowledge we should require to get started with a job in python? Do we require knowledge of all libraries and framework like Django, pylons? To start a job in python what we skillset do we actually require in python. Please guide SIR..Thanks a lot
Hey Telusko, got an incorrect output please check it:
It is not asking for input in following case:
a=5
b=0
try:
print("Resource opened")
print(a/b)
k=int(input("Enter a number :"))
print(K)
except ZeroDivisionError as e:
print("Hey, error and cause of error is :",e)
except ValueError as e:
print("Hey, Invalid Input :",e)
except Exception as e:
print("Hey Something went wrong :",e)
finally:
print("resource closed")
output:
Resource opened
Hey, error and cause of error is : division by zero
resource closed
Question is here why it is not asking me to enter a number K ?
Sir, you are the boss. I'm really a big fan. The way you teach is exceptional