在python中可以调用其他类的main方法

时间:2014-04-18 02:14:28

标签: python python-3.x

这是我的节目 1.post-commit.py 2.commit-comments.py

我需要从post-commit.py调用commit-comments的main方法,其中有5个参数

如果可能的话,我们怎么可能呢?

提前致谢 Sathishkumar

1 个答案:

答案 0 :(得分:1)

您可以在post-commit.py脚本中执行此操作:

import commit_comments

commit_comments.main(arg1, arg2, arg3, arg4, arg5)