如何从main调用一个类的函数
我正在尝试从main..how中调用一个类定义的函数吗?
class file_process:
def findb(self, id):
....
def main():
id = sys.argv[2]
file_process.findb(id)//how to call findb function from main,this is giving an error
由于finddb
是一种方法,因此您需要在file_process
一个实例上调用它:
file_process().finddb(id)
我强烈建议你学习Python和类,我可以推荐Python教程,然后继续。
您需要先创建一个类的实例:
process = file_process()
process.findb(id)
链接地址: http://www.djcxy.com/p/55149.html