how to import only the class methods in python

后端 未结 5 2000
梦谈多话
梦谈多话 2020-12-19 04:50

I have a GP.py file that I am then running a MyBot.py file from.

In the MyBot.py file, I have the line

from GP import *

I have a su

5条回答
  •  孤城傲影
    2020-12-19 05:55

    import * indeed import all classes, functions,variables and etc..

    if you want to import only specific class use

    from GP import class_name
    

    and as far as i know you cannot import only class methods

提交回复
热议问题