Decorators - Advanced Python Tutorial #2

preview_player
Показать описание
In this video we talk about decorators in Python.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚

💻 Exclusive Content 💻

🌐 Social Media & Contact 🌐

Рекомендации по теме
Комментарии
Автор

Yours was the only YouTube explanation of Decorators in Python that actually demonstrated the practical use. I thank you greatly for that because the lightbulb turned on brightly as a result. You did a really nice job of it and I look forward to checking out other instructional videos that you make.

harrymagooslum
Автор

Hence proved..
Youtube's Recommendation is faster than Youtube's Notification

SparePlayss
Автор

I like that you don't spend time on bs. You go direct to the point, have a clear explanations, good examples and overall great content! congrats!

TestingQuantumSoftware
Автор

The timing of this lesson is perfect! I actually have to go over a script that uses pytest and a lot of decorators with one of our engineers with not a lot of coding background tomorrow. This lesson makes explaining a lot easier! Thank you!

alex_mahone
Автор

i always get hyped up but instantly get lazy when ima bout to code

renxooo
Автор

This man is making us better and better programmers...

yuka
Автор

you are a gold mine, I love the way you compress information for advance topics, applications and your channel is Great.

xzex
Автор

omg, I finally understand how decorators works after such long time. Thank you very much for giving such clear explanation.

cwleungaa
Автор

Thanks very much, This lesson was the last straw that broke the camel's back for me in understanding decorators 😃😃

shuaibalghazali
Автор

Finally I understood what's the purpose of decorators. Thanks!

jrgomez
Автор

Time decorator was beautiful example. Will use it everywhere.

arskas
Автор

I haven't seen a notification nor seen an update for any of your videos in my feed for the last probably 3-4 weeks O.O

skrinkz
Автор

Great series! and it would really come in handy if someone is planning to implement custom layers for TensorFlow or Keras. I remember back in the day, I was trying to implement a custom layer for F1-score and it really took me a long time to figure out how to use these hidden functions of Python. It's great to see such a thought through video on the topic!

TheCodingBug
Автор

Thank you so much for making me understand decorators and how cool and amazing they can be !

abuazzan
Автор

This channel is easily one of the best python tutorial channels there are, if not the best one

deei
Автор

Pretty much simple and practiacl, thanks for your awesome work!

arandomwho
Автор

The very best explanation of decorators I"ve seen. The examples actually make sense. Thabks

JS-ysuk
Автор

def decorater(fun):

def wrsper():
print("wraper fun")
hello()
return wrsper()

def hello():
print("main function")

decorater(hello)()

error
wraper fun
main function
Traceback (most recent call last):
File "E:\learn\youtube.py", line 11, in <module>
decorater(hello)()
TypeError: 'NoneType' object is not callable

akbarikrunal
Автор

I always try these programming and these programs works.thanks for these best programming video to make us a best programmer. :)
Love from india.😊😊

pranav
Автор

fun observation: the reason why the number of calculations increased from 10k to 90k, i.e. 9 folds. but the time they took increased by over 220 times(0.025 to 5.6) is because factorial is not linear.🤯

mj