如何在使用python运行脚本时保存show version的输出

时间:2017-04-17 22:36:43

标签: python python-3.x

如果某个标志为True,我有一个执行命令的脚本,我希望将命令的输出打印到文本文件中。这就是我目前所拥有的:

if acco:
    uut.execute('show radius statistics')

1 个答案:

答案 0 :(得分:1)

您可以使用以下内容:

f=open("some_file.txt", "a+") # opens file in append mode
f.write(uut.execute('show radius statistics')) # appends data to file
f.close() # close file