Python Tutorial: Decorators - Dynamically Alter The Functionality Of Your Functions

Поделиться
HTML-код
  • Опубликовано: 3 апр 2016
  • In this Python tutorial, we will be learning about decorators. Decorators are a way to dynamically alter the functionality of your functions. So for example, if you wanted to log information when a function is run, you could use a decorator to add this functionality without modifying the source code of your original function. So let's take a look at how these decorators work and a few ways in which we can use them. Let's get started.
    First-Class Functions Video: • Programming Terms: Fir...
    Closures Video: • Programming Terms: Clo...
    The code from this video can be found at:
    github.com/CoreyMSchafer/code...
    ✅ Support My Channel Through Patreon:
    / coreyms
    ✅ Become a Channel Member:
    / @coreyms
    ✅ One-Time Contribution Through PayPal:
    goo.gl/649HFY
    ✅ Cryptocurrency Donations:
    Bitcoin Wallet - 3MPH8oY2EAgbLVy7RBMinwcBntggi7qeG3
    Ethereum Wallet - 0x151649418616068fB46C3598083817101d3bCD33
    Litecoin Wallet - MPvEBY5fxGkmPQgocfJbxP6EmTo5UUXMot
    ✅ Corey's Public Amazon Wishlist
    a.co/inIyro1
    ✅ Equipment I Use and Books I Recommend:
    www.amazon.com/shop/coreyschafer
    ▶️ You Can Find Me On:
    My Website - coreyms.com/
    My Second Channel - / coreymschafer
    Facebook - / coreymschafer
    Twitter - / coreymschafer
    Instagram - / coreymschafer
    #Python

Комментарии • 1 тыс.

  • @lwwells
    @lwwells 6 лет назад +975

    Feels a bit like the first time I saw inception.

    • @heisenolf13
      @heisenolf13 4 года назад +5

      Totally

    • @arvind31459
      @arvind31459 4 года назад +98

      If you go three wrapper levels down then there's no coming back 😄

    • @celebratinglife6239
      @celebratinglife6239 4 года назад +2

      😂

    • @ritikarashmi300
      @ritikarashmi300 3 года назад +19

      the most confusing thing about in inception is keeping track of reality

    • @TheHamous
      @TheHamous 3 года назад +1

      hahaha totally agree

  • @rmalshe
    @rmalshe 8 лет назад +835

    The way you teach programming is really nice! Its very basic, it is paced very well, and it is very logical. In addition you use code snippets that are really concise. Many other videos are either too fast, or too slow, or often simply lack the logic.
    Often times one can see videos, or written programs but when the teacher doesn't tell why it should be done in a certain way, the inspiration is missing, and then it is very tempting to pick up bad habits that may look simpler, but are inefficient methods.
    Keep up your good work, and every now and then when I will look for efficiency, I will search for your name :)
    Now I wish you were a data scientist at Intel where I work.

    • @coreyms
      @coreyms  8 лет назад +91

      Hey thanks! I appreciate that.

    • @popik45
      @popik45 7 лет назад +10

      No doubt- it's the best tutorial for python!! Thanks 🙏

    • @SuhaibDHD
      @SuhaibDHD 7 лет назад +8

      i agree, i've never found tutorial videos more interesting, concise and informative than these. thanks so much!

    • @bisaktobangachi
      @bisaktobangachi 6 лет назад +17

      Don't go to Intel leaving your online students. Please keep up this good work.

    • @user-pt6pj9sz9h
      @user-pt6pj9sz9h 5 лет назад +3

      Agree,this is the best tutorial video about decorator.Also the best video I've found about python

  • @MrVwin
    @MrVwin 7 лет назад +208

    Perfect Explanation + Good Examples + Good tempo + Nice voice . thank you corey

  • @saitaro
    @saitaro 7 лет назад +195

    Wow now I can decorate my decorators while I'm using my decorated functions

    • @coreyms
      @coreyms  7 лет назад +52

      Haha. It's definitely easy to get carried away.

    • @jeff_mci_gaming6018
      @jeff_mci_gaming6018 6 лет назад +1

      lolol thats hilarious

    • @Lilly24244
      @Lilly24244 3 года назад +4

      It's hard transitioning from interior design to python

  • @jeff_mci_gaming6018
    @jeff_mci_gaming6018 6 лет назад +232

    Your hands down the best damn online-teacher i've seen yet...there was one other dude on Udemy , but you've surpassed him...Your videos makes programming twice as fun because you explain things so easily for ppl to understand...I can see how this would result in a person spending hours at the keyboard, generating new ways to implement their code with their newly-learned information ( at least that's what your videos have done for me!! lol)....thanks for your hard work, Corey.

    • @coreyms
      @coreyms  6 лет назад +13

      Thanks! I appreciate that

    • @aziz5556
      @aziz5556 6 лет назад +2

      who is that dude on udemy, I hope you didn't mean jose

    • @jeff_mci_gaming6018
      @jeff_mci_gaming6018 6 лет назад

      nope not him...out of respect, i would rather not say this person's name. :)

    • @akshitaggarwal7878
      @akshitaggarwal7878 5 лет назад

      @@aziz5556 Tony Alicea of Wired part of javascript. Respect Corey a lot but everyone has right to know handful of good teachers :)

    • @william3588
      @william3588 4 года назад

      @@aziz5556 is jose portilla bad?

  • @AlexCooper0
    @AlexCooper0 5 лет назад +436

    "A decorator is just a function that takes another function as an argument, adds some kind of functionality, and then returns another function."

    • @iamblaineful
      @iamblaineful 4 года назад +70

      And then it becomes JavaScript

    • @orkhanahmadov9963
      @orkhanahmadov9963 3 года назад +3

      @@iamblaineful ahahahahahhahaha and we were running from javascript to python

    • @yogenghodke
      @yogenghodke 3 года назад +3

      Wow. Poetic words

    • @ahmednabielalkanaq3559
      @ahmednabielalkanaq3559 3 года назад +24

      In other words... "A decorator adds some decorations to a function, returning a decorated function!"

    • @basicallypitharous1604
      @basicallypitharous1604 3 года назад

      So basically, a decorator is a function, it's created by taking a argument which will be a function by assigning a variable to an argument which is a function that when executes displays some kind of functionality, this variable is turn into a function by using closures since it assigned its self and returned it and made it a function with that, it took advantage of closures creating a decorator? I don't fully understand but I'll get there

  • @dheerajkumar2534
    @dheerajkumar2534 Год назад +21

    PURE GENIUS. BEST VIDEO ON RUclips ABOUT DECORATORS.

  • @hitmanLis
    @hitmanLis 7 лет назад +68

    You could be the best instructor in the entire world... nice flow!

  • @monasamir5288
    @monasamir5288 2 года назад +27

    I have no experience in programming whatsoever so my expectations for understanding the concept of decorators were pretty low. However, to my own surprise, after I finished the video, I managed to write and successfully run an entire decorator with no errors whatsoever.
    Thank you won't be enough! You have got a real talent in simplifying extremely complicated topics to non technical people such as myself and I'm extremely thankful that I got to witness this talent. God bless!

  • @randiarisman2419
    @randiarisman2419 4 года назад +3

    I don't know why, but I never watch full ads before on any youtube channel, but this is the first time I watch all 2 ads, 1 in 2 minutes because I could not support you by money or else. All of your good videos makes me still able to work in my current dying job with my dream that getting my new job in my bright future. Thank you, Corey!

  • @majed316
    @majed316 5 лет назад +29

    This is the first contact for me with decorators and surprisingly i have got it completely, that's rarely happen to me specially with such complicated concept, usually I need a week at least and tons of resources to make sense out of it.
    Your videos invaluable treasure, We couldn't thank you enough no matter how many times we say thank you.
    You are literally my hero.

    • @coreyms
      @coreyms  5 лет назад +2

      Thanks! Glad you found it helpful

  • @snyredbaron21
    @snyredbaron21 5 лет назад +8

    Corey, you never cease to amaze me!
    I had seen and read several videos and docs about decorators, but I always ended with doubts and more questions. But I think I finally understand very well all I need to know about decorators. Thanks for your videos!!!

  • @muzik6808
    @muzik6808 4 года назад +3

    u r the best example for humanity.. that u r providing such kind of education.. that we cant get after paying somewhere..

  • @chiefmofo
    @chiefmofo 6 лет назад +28

    This is the best explanation of decorators that's I've come across. Kudos!

  • @badoiuecristian
    @badoiuecristian 4 года назад +5

    Your clarity on how to start simple then expand into more complex examples in a logical way is amazing.

  • @deserve_it
    @deserve_it 5 лет назад +2

    This is an another example of the very common witty remark.Thing is not complicated as it looks from a first glance, we only need a proper man who can explain it clearly. You are the man ! Thank you very much!

  • @Oda3908
    @Oda3908 4 года назад +3

    Corey, you are a true mentor and master of programming. I was just trying to remember what its definition said but couldn't understand how it works for those complex explanations. You make it concise and clear, show it in a logical and straight forward way. I just want to say thank you that for all of your tutorial videos you saved so many self-taught programmers.

  • @narekisaghulyan8959
    @narekisaghulyan8959 5 лет назад +7

    Corey, amazing tutorials. every time I see you have a tutorial regarding the topic I'm looking for I already know I'll understand it. You should do this full-time. I'll donate :)

  • @raphaelpz
    @raphaelpz 4 года назад +2

    Each and every video I watch from you helps me feel a bit more like a programmer and pushes away the good old impostor syndrome... you are simply the best coding teacher on the internet and I am so grateful to have come across your channel while re-training to become a developer. Thank you so much.

  • @vxz90044
    @vxz90044 4 года назад +14

    What an amazing teacher. Making the complex; simple. Thank you good sir.

  • @amanmaldar
    @amanmaldar 6 лет назад +8

    1:25 The variable 'message' wasn't created inside the inner_function but inner_function does have access to message variable. This is called free variable. Spot on. Thanks for the awesome description.

  • @mpertalulaki4186
    @mpertalulaki4186 7 лет назад +56

    your python tutorials are works of art; really concise and educational; thanks

  • @harikamacharla7005
    @harikamacharla7005 5 лет назад +2

    You are too good at teaching. That's only possible when you have a clear idea of every minute thing happening and the order in which it happens. Hats off! and thanks for taking your time and teaching such complex content in such an easy way.

  • @livingwithlinlin3122
    @livingwithlinlin3122 3 года назад +1

    Best decorator tutorials with best practical examples. Not a long video considering how much info it covers. Well worth the time.

  • @sphiwematone8196
    @sphiwematone8196 3 года назад +7

    Nobody has ever really had this impact in my life honestly, you sir are my hero I dont even have enough words to describe how great you are. It's also fascinating and soo godly how someone you have not even met can have this amount of impact in your life. You have done for me what no one else has ever done to my life, I moved from being a complete novice to intermediate and I'm hoping to keep learning from your videos. You are the best💯💫👑

    • @coreyms
      @coreyms  3 года назад +3

      Wow, thanks so much for the kind words. I'm really happy to hear the videos have helped :)

  • @felixlucaciu
    @felixlucaciu 6 лет назад +4

    Thank you Corey! Your tutorials are surpassing even the ones offered by Pluralsight!

  • @gouthamanush
    @gouthamanush 6 лет назад +1

    I have watched several videos and read several websites to know about decorators but no one could explain me clearly the functionality of a decorator. Now it's crystal clear :)

  • @jismathew3573
    @jismathew3573 4 года назад +1

    I like your way of teaching, you build up a concept right from its base explaining from its roots and by the end of the tutorial you show the possibilies one can implement using the functionality.
    The possibilities you show inspires one to try it in their code, you have opened doors for pythonistas across the globe to raise their standards.
    Thanks Corey

  • @techcode_man
    @techcode_man 6 лет назад +6

    Corey, You are a hero! Thank you so much for these videos, these are the best Python videos I have seen. Your teaching methodology is second to none. Thank You!!!

  • @akash__choudhary
    @akash__choudhary 4 года назад +3

    Corey, you are the best, I attended many online courses, some are paid but none of them was as good as you. you teach what id important and the way you explain basics,it is superb.thank you for sharing your knowledge free and guiding many of beginner python students like me.

  • @Chineeex
    @Chineeex 3 года назад +1

    Hands down the best tutor! Your way of explaining even the most complex topics with easy to understand examples, as well as your explanations are amazing! I would like to thank you for taking your time to make all these amazing tutorials!

  • @prathameshmahankal4180
    @prathameshmahankal4180 4 года назад +1

    No matter how many tutorials I see, none of them can compare yours! Great job, sir!

  • @AriaHarmony
    @AriaHarmony 6 лет назад +6

    Crystal clear! I finally get decorators! Thank you very much!! :D

  • @caio-jl6qw
    @caio-jl6qw 5 лет назад +291

    The proper way to never forget how decorators work is just keeping in mind what that '@' syntax means:
    @decorator
    def function():
    ...
    is equivalent to: function = decorator(function).

  • @jpmol17
    @jpmol17 3 года назад +2

    It's impressive how after 5 years your videos are still helpful and relevant,
    even though it's from early version of python. Great content man, very didactical !

  • @atul6981
    @atul6981 7 лет назад +1

    I search your channel first if there is anything I don't understand in Python, and I am never disappointed. Thank you so much for sharing these videos. And keep them coming. Cheers!!

  • @karthikvenkataram4790
    @karthikvenkataram4790 10 месяцев назад +3

    This content is a boon for newbies like me to learn better about decorators and wrappers. Thanks a lot Corey Schafer 🙏

  • @armanveersinghgill2801
    @armanveersinghgill2801 5 лет назад +34

    For those who have just watched the videos on first class functions and closures, video starts at 4:40.

  • @mahesh9762132636
    @mahesh9762132636 6 лет назад +2

    No one Could ever make decorator understand to anyone this better. I find myself lucky to find you on RUclips and I admit without any doubt, you are SAVIOUR to all those commenting down below..Thanks a ton

  • @landw1802
    @landw1802 3 года назад +1

    Best Python tutorial came across so far - great pace, materials, and such a nice unwrap of the mysteries around “wrapper”!

  • @elibaum5489
    @elibaum5489 4 года назад +7

    watched this video 4 times. Don't regret it.

  • @danailpetrov
    @danailpetrov 4 года назад +8

    I just had to say this. I’ve been doing some programming for about 15y now but this isn’t my ‘bread and butter’ so often I’d stuck on a topic (which in this case was the decorators in python) and believe me, I’ve read quite a lot blogs, articles, etc, and as many others I just ended-up here... I can finally say I do understand it and it all makes perfect sense. Thank you for your time and efforts doing this fantastic job!
    P.s. I really hope my appreciation somehow hopes you pay the bills too ... lol ;-) (I liked, subscribed, etc :-))

    • @coreyms
      @coreyms  4 года назад +1

      Thanks! I’m glad the video helped. And yes, liking and subscribing helps very much! Thanks again!

  • @santos3131
    @santos3131 3 года назад +1

    Very well paced, comprehensive, and has concise examples. One of the best tutorials I've seen, got all the info I needed in 5 minutes

  • @graycybermonk3068
    @graycybermonk3068 5 лет назад +1

    You are really Killing. I am trying to understand Decorator more than 2 months. But after your tutorial. Every this is clear. Respect.

  • @jamesbrown6591
    @jamesbrown6591 5 лет назад +3

    by far the best tutorials for python i've come across

  • @ponnuvel659
    @ponnuvel659 5 лет назад +3

    I have suggested your tutorial to all of my friends. you are helping many people keep doing , thanks a lot from india.

  • @suhailahamed4991
    @suhailahamed4991 6 лет назад +2

    I just walked through this video regarding decorators, additionally i knew what are Clousers and First Class functions....Really, ur teaching is awesome Sir. Thank you

  • @stillinmusic
    @stillinmusic 6 лет назад +1

    So helpful! I finally understand decorators. What a brilliant explanation.

  • @jamesfrank3421
    @jamesfrank3421 6 лет назад +5

    You have got to be one of the best teachers I have ever come across. You explain complicated concepts extremely well. Thank you for your time and effort

  • @jasonclement6305
    @jasonclement6305 5 лет назад +4

    These python tutorials are the best on youtube.

  • @parhamk75
    @parhamk75 4 года назад +3

    This tutorial was the best; It expresses the depth of your comprehension and mastery on this issue!

  • @g2nd
    @g2nd 4 года назад +1

    Finally, a python developer who uses names on functions and variables clearly. Unlike those that I watched prior to this, using f, f1; tire, tires; div, div1. Thanks Corey! This made following the execution flow easily and effortlessly.

  • @timurbabadjanov9115
    @timurbabadjanov9115 6 лет назад +5

    You explain this shit better than most of the professors in my school! Thank you Corey!

  • @amardeepbhowmick3614
    @amardeepbhowmick3614 4 года назад +6

    This video is a true GEM! You should really consider making an Udemy course. I will share this with all of my Python enthusiast friends. Thank you Corey!

  • @swapnashambhu
    @swapnashambhu 5 лет назад +2

    The best python tutorial I have come across, you saved my life. Thank-you Corey

  • @thebuggser2752
    @thebuggser2752 2 года назад +1

    Great presentation of a difficult topic. Very thorough and complete.
    In general, most Python concepts are pretty intuitive. I find decorators to be anything but intuitive and you did an excellent job of explaining it.

  • @ex0stasis72
    @ex0stasis72 4 года назад +8

    You taught this better in 30 minutes than my university professor taught this in 2 hours.

  • @veganath
    @veganath 7 лет назад +33

    My head hurts, I hope I'm not the only one who had to watch this 3 times....lol. BTW wonderful tutorial thanks

    • @nxxxxzn
      @nxxxxzn 7 лет назад +22

      veganath yeah it takes some effort to WRAP one's head around these things at first :D

  • @MrRijoAlex
    @MrRijoAlex 6 лет назад +2

    First off, Amazing Video; really well explained!! I spent the whole day trying to understand what decorators & closures were until I came across your videos. I don't think that this video was particularly long for it's nature of intuition and complexity. Thank you so much, Corey!! *Subbed for life* :D

  • @JorgeEscobarMX
    @JorgeEscobarMX 2 года назад

    After watching this video, I realized that most courses on python skip class decorators and functools import wraps, it is a long video, but very valuable info. Now I know how to use several decorators on one function properly.

  • @krishnakanth6106
    @krishnakanth6106 5 лет назад +4

    OMG !!!!...You made my day...Best video so far on Decorators...My search ends now :)

  • @jayeshvasudeva1133
    @jayeshvasudeva1133 3 года назад +11

    when he explained *args and **kwargs, tears fell down my eyes

  • @digitalaks
    @digitalaks 6 лет назад

    Just at the moment when I was getting question "What if I want timer as well as logging?" you come up with explanation for that. Wonderful mind reading of the viewer!

  • @xiaolu7988
    @xiaolu7988 5 лет назад +1

    Very clear explanation. I already knew how to use a number of decorators but this is a great review for me to understand the decorators better. Thank you.

  • @kelvinquinonez7694
    @kelvinquinonez7694 7 лет назад +3

    These tutorials are amazing!!!

  • @thsdsyt
    @thsdsyt 4 года назад +3

    This videos was awesome! Really simple examples for complex tasks.
    The only thing that I couldn't grasp properly was the idea the wrap decorator inside the functools module.
    Maybe a video about this specific decorator should clarify this tool a little more.
    Thank You!!!

  • @meghaaggarwal8508
    @meghaaggarwal8508 4 года назад +2

    Thanks Corey for this indeed amazing tutorial. You are pretty good at giving us strong basic fundamentals on Python!! Such a crisp explanation of decorators

  • @innerpeace2139
    @innerpeace2139 4 года назад +1

    I am in Pluralsight right now as its free for the whole month of April due to Covid, as I am doing the courses of Bingham and Smallshire, I just had to run to your video as I knew I will be more enlightened. Well worth my time. You are very good teacher and thanks a lot!

  • @omarfsosa
    @omarfsosa 5 лет назад +96

    Dude, I seriously hope someone, somewhere, is paying you a lot of money for your knowledge xD

  • @Chayo016
    @Chayo016 7 лет назад +5

    Awesome video! I have an exam in like an hour and you actually made me understand the contents :D You are a very good teacher. I'll definitely watch more of your videos when I'm less in a hurry :)

  • @frederickchesneau1155
    @frederickchesneau1155 4 года назад +2

    Hey Corey, I am going through your videos which are awesome.
    This one in particular is mind blowing! I was able to understand the concept during the video and you saved me countless hours of coding and reading :).
    Keep it up!

  • @MsSuyash1995
    @MsSuyash1995 5 лет назад +2

    This was an excellent tutorial video on decorators. I have watched a lot of videos as well as read a countless number of articles/blogs on the topic... And, yet I haven't seen this kind of fluency... I absolutely love how your structure and organize your videos and then, deliver them with great control on the tempo...
    At no point, I felt lost or thought to myself, I couldn't understand the concepts being shown on the screen... I consider your channel to be the best Python based channel on RUclips... While I do admire a lot of other channels, like Dan Bader's and the likes, but somehow your impeccable didactic skills make your channel a must for any Python developer, especially beginners...
    Please keep doing your excellent work... And, I read your interview (that you gave on RealPython.com) and I really appreciate that you have granted access to everyone... So, young learners (especially students who are not financially capable) who are unable to pay the premium to gain access to high-quality resources on Python.

  • @DigitalDivotGolf
    @DigitalDivotGolf 5 лет назад +4

    For me this was very confusing to learn but after watching this video 30 times i finally understand it. I would have for sure been left behind in school.

  • @user-pt4vn5hr2z
    @user-pt4vn5hr2z 4 года назад +3

    Thank you corey, you are the best :)

  • @kevon217
    @kevon217 Год назад

    You’re an excellent teacher. Best tutorial on decorators I’ve seen so far.

  • @garyjeffersii6735
    @garyjeffersii6735 8 лет назад +1

    Thanks for your great videos. I'm still trying to wrap my head around closures and decorators and your videos are helping greatly.

  • @rushikesh8132
    @rushikesh8132 4 года назад +8

    This Guy is A Fucking Legend And a GOD At Teaching Programming . Absolute Madlad . All the respect .
    Hope I will Repay Him Someday !

  • @MrMartinfo
    @MrMartinfo 7 лет назад +3

    my wrapper function couldn't wrap head function before. After seeing your video my wrapper get's the head function to work :D :D :D good work mate, keep up

    • @Max24871
      @Max24871 7 лет назад

      nobody knows Is this a play on 'could not wrap my head around this' ?

    • @MrMartinfo
      @MrMartinfo 7 лет назад

      BMicraft Hehe yep. Sarcasm detected :D

    • @sunitgautam7547
      @sunitgautam7547 6 лет назад

      Lol! XD

  • @dadestor
    @dadestor 3 года назад +1

    Corey you are amazing! I have been having trouble understanding the concept of decorators but this tutorial has made it perfectly clear for me!

  • @novicetech1
    @novicetech1 6 лет назад +1

    Hi Corey - This was awesome and very helpful. Please do more of these. As you know, I'm new to Python programming (programming period really) so I am always looking for practical ways to use what I learn and your videos are the only ones I use. Thanks.

  • @aramhamidi7080
    @aramhamidi7080 7 лет назад +3

    Best tutorial!

    • @coreyms
      @coreyms  7 лет назад +1

      +Aram Hamidi Thanks, Aram. I saw a notification of another comment of yours about the logging decorator not being applied to both of your functions. I can't find that comment now, so maybe you've got it working. But if you have any further questions just let me know and I'll do my best to answer. Thanks again.

    • @aramhamidi7080
      @aramhamidi7080 7 лет назад +1

      Hi Cory, thanks for noticing. I deleted that comment because I realized the problem was in my own code. You did a great job explaining this subject that I don't have any questions for now. Thanks again.

  • @kanakanayahamselvendira7690
    @kanakanayahamselvendira7690 7 лет назад +11

    Excellent Teaching. I have watched so many people tutorial but your's the best. Is there anyway I can get your scripts in the printable format or download those tutorial files Please? It will be very handy.

    • @deeeeeds
      @deeeeeds 6 лет назад +1

      I doubt you're still looking for this but for anyone who might stumble on this video later, there's a GitHub link in the description.

  • @mohammadamini1997
    @mohammadamini1997 Год назад +2

    The materials and the practical points were presented so wonderfully. Thank you so much for your great work.

  • @saulgarza9859
    @saulgarza9859 7 лет назад

    I learned more about decorators with you in the first 15 min than I did with my professor in the two weeks he taught. Bless up homie, need to ace this final in two day.

  • @michael_d2
    @michael_d2 7 лет назад +3

    Hi Corey,
    1. First of all- very nice!
    2. Do you have some repository with a code from the video?

    • @sejalp
      @sejalp 7 лет назад

      Yes the code snippets that you used, will be handy thing to have to try out. Very nice tutorials indeed.

    • @maxguichard4337
      @maxguichard4337 6 лет назад

      The code used in his videos can be found in the description. This video's code can be found at: github.com/CoreyMSchafer/code_snippets/tree/master/Decorators

  • @PR0MINENCE
    @PR0MINENCE 4 года назад +3

    Decorating rappers

  • @alladamk
    @alladamk 4 года назад +1

    Absolutely spot on, and to the point. Really appreciate the way you are teaching. Thanks for sharing your works.

  • @d_learner7573
    @d_learner7573 6 лет назад +1

    You are an inspiration for me. I learn from you things that look impossible to learn for me. Thanks a lot.

  • @weiso498
    @weiso498 6 лет назад +7

    decorator should be called inceptionator instead....

  • @bobfish7699
    @bobfish7699 4 года назад +1

    Another great tutorial. The more I am exposed to Python, especially with the help from these videos, the more I like the language. It is so logical and elegant. I wish it was around in my youth when I started coding, it would have taken over the coding world by now. And I think it will,,,,

  • @HexagonalClosePacked
    @HexagonalClosePacked 5 лет назад +2

    Thank you. Finally understand what the @ sign does before a function!

  • @tassoskat8623
    @tassoskat8623 4 года назад +1

    This was an enlightening video on decorators. It really helped to better understand this concept that is crucial for my university studies.
    Thanks

  • @sureshroyala6296
    @sureshroyala6296 6 лет назад

    Thanks much for this. The logger and timer example taken for decorators are very relevant and justifies thoroughly as to why we need them.

  • @deepak55793
    @deepak55793 5 лет назад +1

    Thanks a lot for your explanation on decorators, helping millions to learn the difficult topic in easy way.

  • @Mystterriks
    @Mystterriks 4 года назад +1

    Thanks! Finally, someone demystified it instead of adding more mystery! Good job!

  • @arthurpenndragon6434
    @arthurpenndragon6434 Год назад +1

    I was intimidated at first but your explanation is amazing! By the end with a little bit of coding-along I was able to catch up. Thank you for your work.

  • @tushardeshpande8593
    @tushardeshpande8593 3 года назад +1

    You are true teacher Corey.
    Your videos are very precise to the topic, with a lot of logic and a perfect explanation.
    Thank you for your contribution.
    We respect you!!

  • @edchelstephens
    @edchelstephens Год назад +1

    Just the explanation I was looking for! Thanks a lot Corey! 💯

  • @Achrononmaster
    @Achrononmaster 5 лет назад +1

    Excellent teacher and very friendly to post your notes. Thanks. You're awesome.

  • @renujain8911
    @renujain8911 3 года назад

    One of the best teacher to understand any complicated topic within programming knowledge...