Install any one Python Third party package , You will find that there are many packages and modules 、 Very complicated , And there are many classes and functions in many modules , How to know their usage in the process of actual use ?
dir(className)
You can get all the members in the class .help(funcName)
You can get the official documentation of the function .