Master in Python :- kzbin.info/aero/PLI4OVrCFuY543naNBsCaRLrLSxI7MUOzZ
@khetrabasitechvideo3622 жыл бұрын
Sir me itna khush nhu aap ki videos dekha kar aap ka padhe na ka tarika oo God Dil ko chhu liya ap ne sir
@codewithkolhar3131Ай бұрын
thanks, first time I understood after watching so many videos. keepitup.
@CodeyugАй бұрын
Thanks!
@shantanukadukar6496 Жыл бұрын
Perfectly explained. Thanks bro, i have gone through many videos but not getting the actual concept but the way you explained is just perfect.
@Codeyug Жыл бұрын
Keep learning..
@Bhupeshpal Жыл бұрын
Literally I am following you since last week and now everything is getting cleared because whatever you told, you give real life examples in a layman language. So heartily thanks and keep making videos for flask , Django and in cloud side
@Codeyug Жыл бұрын
Glad to hear that
@Money-em2jz3 ай бұрын
Well explained brooooooooooo please please continue don't stop no one is teaching like you
@mechxp-pb3en8 күн бұрын
best video on decorators
@clau_X Жыл бұрын
best channel for learning python.. thanks alot
@Codeyug11 ай бұрын
You are most welcome
@anassohail6576 Жыл бұрын
Amazing clearity in explanation
@shivammodi11052 ай бұрын
Loved this explanation
@kshamapathak4693 Жыл бұрын
U are just osm to explain the concepts...
@Codeyug Жыл бұрын
Thanks..please check playlists
@pahadiraishgamer1777 Жыл бұрын
Great explanation 👍👌👌
@Codeyug Жыл бұрын
Thank you nad please check courses in playlist section
@siddhigolatkar85583 ай бұрын
Thank you
@JustPython8 ай бұрын
number one video
@Codeyug8 ай бұрын
Thanks
@146aarti5 Жыл бұрын
Superb explanation
@Codeyug Жыл бұрын
Thank you 🙂
@VarunKulkarni-pk1yg6 ай бұрын
You are amazing man
@Codeyug6 ай бұрын
Please share my channel with friends!
@shelly1067 Жыл бұрын
very nice explanation, but in case I write print(printer()) , in line number 13, I get "None" along with 3 times welcome in output. Could you please explain. Thanks for the upload!!!
@nandinirm22342 жыл бұрын
Here font size is correct Good explanation
@Codeyug2 жыл бұрын
Keep going.. 😃
@rahimkhizar3301 Жыл бұрын
Lots of love bhai maza a gaya
@Codeyug Жыл бұрын
Thanks ❤ & I have created a small playlist on decorator.. Please check
@prathameshhiremath1379 Жыл бұрын
Boss Thank you very Much because i search lot of videos but i dint understand from there but after seeing this video all concepts are clear sir u have beginners python videos from scratch so i will see i will understand more better for this Big thank You 😍😍😍😍🙏🙏🙏🙏🙏 so i am susbscribing ur channel
@Codeyug Жыл бұрын
Thanks and please do share
@Phadi_Vloger7 ай бұрын
I have a question? Is it compulsory to use nested function inside decorator function? If it isn't then please explain this with an example.
@Codeyug7 ай бұрын
It is necessary
@dayasagarmittakol35453 ай бұрын
How much long data this Closure function can hold, when decor function called it was having addition function / object address Aur ye nested function ka address return Kiya, so decor ka namespace ya function stack frame for destroyed, but when inner function called from somewhere it got address of addition function, From where did it get, and how much memory or bytes of data that holds what is the limit, as here these are small examples, but projects it can be huge function..
@Codeyug3 ай бұрын
I will come to you on this.
@mr_pavya2 жыл бұрын
Thanks sir ...nice teaching 👌
@Codeyug2 жыл бұрын
Thanks... Oop series going on.. Have a look at playlist
@Phadi_Vloger7 ай бұрын
Sir i have one more question At 7:37 when u call alias printer() then why python interpretor is not get confused with the same name printer function.
@Codeyug7 ай бұрын
because reassignment happened here. at line 12, i have assigned a new value to printer variable. Now, printer is identifier only for that new value and not the old function.
@Phadi_Vloger7 ай бұрын
@@Codeyug thanku
@vaibhavtandale42332 жыл бұрын
nice teaching sir
@Codeyug2 жыл бұрын
Thank you vaibhav... Keep going.. 👍👍
@pradipchovatiya2579 Жыл бұрын
@13:43 min why iner function call return to decor logically not understand..... please explain..
@kshamapathak4693 Жыл бұрын
I want to learn to build projects with my own.. ca u guid plz
@Codeyug Жыл бұрын
My advice is to learn techs/programming languages first which you are going to use in your project. Some students directly starts building project and they don't have basic knowledge. If they get any error, it becomes very difficult for them to understand what's happening.
@kshamapathak4693 Жыл бұрын
@@Codeyug Thank you for replying sir.. I want to grow in python and i think i m in learning process too.. completed my course from ur channel as well as from various courses.. but now want to test whether i am ready to make something through that knowledge or not.. so i need ur help. It will be my pleasurer to have ur guidance.
@yuvrajingale62602 жыл бұрын
Sirji your explanation is easy i wrote same program of 2 number it shows 'NoneType' object is not callable. How do i fix this?
@Codeyug2 жыл бұрын
Program send kro muze on Instagram.. Link about me milega
@pranavkulkarni187 ай бұрын
you are making complicated and confusing code examples. please don't make confusion. great effort from you. nice playlist.
@Codeyug7 ай бұрын
Esse simple examples aapko kahi nhi milega. Addition ke example me kya complex and confusing hai ?
@PK-wz1qm3 ай бұрын
Bro this is not confusing actually it's quite easy if you go to other channels there it becomes difficult to understand.
@RamaKrishna-ll8iz Жыл бұрын
@code-yug you are using same function names and variables names . so its confusiong please use different names like below def abc(x): def mno(): result=x v2=float(input('Enter a number:')) result=result+v2 return result return mno def addition(): num1=float(input('Enter first number:')) num2=float(input('Enter second number:')) result=num1+num2 return result addition=abc(x) addition()----------------------its also not giving answer please suggest me
@Codeyug Жыл бұрын
abc(x)? You should pass addition in abc
@adityashrirang21422 жыл бұрын
Sir staticMethod batayena thoda confusion ho rha
@Codeyug2 жыл бұрын
Please check my oop playlist.. Everything is covered. You can also search 'staticmethod in python codeyug'.
@adityashrirang21422 жыл бұрын
@@Codeyug thank you sir
@erudite6002 жыл бұрын
Sir plz teach python for beginners live classes
@Codeyug2 жыл бұрын
Playlist available hai..Live krunga KZbin pe.. But abhi nahi
@erudite6002 жыл бұрын
@@Codeyug ok sir
@RamaKrishna-ll8iz Жыл бұрын
def decor(addition): def inner(): result=addition v2=float(input('Enter a number:')) result=result+v2 return result return inner def addition(): num1=float(input('Enter first number:')) num2=float(input('Enter second number:')) result=num1+num2 return result addition=decor(addition) print(addition()) ------------------------what is wrong here i am not getting answer. Anyone please suggest
@Codeyug Жыл бұрын
what is abc? Please go through entire functional programming. Then, only you will clearly understand decorators..
@RamaKrishna-ll8iz Жыл бұрын
@@Codeyug got it def abc(x): def mno(): result=x() v2=float(input('Enter Third number:')) result=result+v2 return result return mno def addition(): num1=float(input('Enter first number:')) num2=float(input('Enter second number:')) result=num1+num2 return result addition=abc(addition) print(addition())
@Codeyug Жыл бұрын
Great! You can ask any doubt .. happy learning!
@surajbhopi61612 жыл бұрын
Dimag ka dahi karke raha hai is decorator ne...🤣🤣
@Codeyug2 жыл бұрын
After watching this video also..?
@surajbhopi61612 жыл бұрын
@@Codeyug i got cleared all concepts ur like god for me
@sushilbhardwaz4744 Жыл бұрын
Python kuchh araha hia kuchh nhi bhi
@DhavalAhir10 Жыл бұрын
Kyu Bhai esa kyu bolra
@Codeyug Жыл бұрын
Bro, keep practicing and keep learning. You will become master one day. I will clear your doubts..