DEV Community

Discussion on: Get Python docstring with ast

Collapse
 
waylonwalker profile image
Waylon Walker

Do you need to know how to make your own classes? probably not. Do you need to create your own instances of objects and call methods on them? absolutely, that is what pandas is all about. Using OOP is much simpler than creating all your own custom classes, so the depth you NEED is failrly minimal.

Collapse
 
mccurcio profile image
Matt Curcio

Thanks I appreciate it.