Just to add to the content, getattr can also work with methods inside class. Let’s say you got a Bot class with a method named display, you can use getattr(Bot(), “display”)() to dynamically call the methods.
@MaxShapira2real7 ай бұрын
Clear and to the point. Awesome stuff! 🚀
@mmurray4043 Жыл бұрын
NeuralNine should be renamed NeuralTenOutOfTen. Thank you for this great video
@gamerk886 ай бұрын
Is'nt the comments for this video are less MAN I mean he explained everything so nicely..
@teprox7690 Жыл бұрын
sehr schöner Content!
@scarysticks66 Жыл бұрын
Neuralnine have you tried Mojo?
@dipeshsamrawat79577 ай бұрын
Thank you ❤
@paulthomas1052 Жыл бұрын
Thanks very useful.
@youssefalkhodary Жыл бұрын
Perfect
@SolidBuildersInc Жыл бұрын
This was a jewel. I am more comfortable with Functional Programming with Pandas. Trying to have a RAD flow with OOP has been very challenging for me. This was the missing link. How or Can the OOP be a dataset to sync with a DB? I never understood how the OOP Devs managed the data efficiently. To me, it seems like if the server goes down they lose all of the data because it wasn't a DB. Maybe it was a DB, but this is my delima. Anyway, Thanks for sharing 🎉
@vishnubalaji9500 Жыл бұрын
guys you can also use self.__dict__['key'] to add , change , remove or find if class attributes exists. It works similar to globals() and returns a dictionary of class attributes.