TypeError:在python中写入文件时,'module'对象不可调用

时间:2015-01-27 20:57:14

标签: python

我是Python的新手,我试图在我的python脚本中运行shell命令,并试图将结果写入输出文件。

写入文件时出现以下错误。

这是我的源代码

total_count = subprocess.call("sed -n '$=' " +sourcePath, shell=True)

fo.write (" The total count on the Audit Report is " )
fo.write(string(total_count))

错误讯息:

fo.write(string(total_count))
TypeError: 'module' object is not callable

0 个答案:

没有答案