如何从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

上一篇: how to call a function in a class from main

下一篇: 'Self' of python vs 'this' of cpp/c#