thisl is wild, I never thought decorators were so easy
@nathanedison86927 сағат бұрын
Not just useful, really helps make sense of what decorators are and how they work. Thanks!
@abeyroy00711 сағат бұрын
Broo you are too OP 🔥 Keep churning out more Python content... *PYTHON FOREVAAAAAA !!!*
@KeithFlint35011 сағат бұрын
from neuralnine import decorators
@michaelthomas32355 сағат бұрын
For the type decorator, I suggest accessing the __annotations__ property of the function and use the hints as the determinate instead of inputing the types in the decorator per function. This makes the decorator more reusable and less coupled.
@lowkeygaming471612 сағат бұрын
Thanks again for another quality content
@davewest67886 сағат бұрын
Thanks for explaining decorators.
@youngzproduction749842 минут бұрын
This is gold! 🎉 Thanks for your great effort.
@Mistery2854312 сағат бұрын
Really useful
@MartinBlaha7 сағат бұрын
Very useful and well explained. Thank you 👋
@sigmata05 сағат бұрын
Awesome, thank you.
@halilibrahimkisakesen5466 сағат бұрын
Great,thanks neurol nine. I've already find a solution to some minor bugs
@jftuga46 минут бұрын
Can you explain when you need to use "def decorator(func)" & "return decorator" and when you do not?
@rahulkmail11 сағат бұрын
What will happen if I change value when I use, "@cache" decorator like print(process_input(6)) in any step of calling the method process_input() ?
@barmalini9 сағат бұрын
it's for you to decide, because you will have to implement that derorator and there you specify what is going to happen
@somebody___06-j3g10 сағат бұрын
How to Create a simple tool with UI that leverages AI to analyze logs of a Windows 10/11 computer to identify warnings, log off, and login time of users, the tool should automatically email a summary to a particular email ID.
@murphygreen8484Сағат бұрын
Is there an easy way to globally turn decorators on and off?
@Da_phuc12 сағат бұрын
Nah this is wild.
@skewty8 сағат бұрын
Is old school synchronous code still being widely used outside of the learning sector and data science / AI? I have been seeing / writing async for over 5 years and seldom see benefit in pseudo threaded code.. Maybe when python and the GIL are removed things will change.. This video seems to be your learning journey in python from newb to intermediate.