我正在执行 myfile.py 并且我想将输出重定向到一个文件,所以我这样做了:
python2.5 myfile.py > affiche.txt
但是,当我显示 affiche.txt 时,我看到输出已重复。
为什么此文件中的消息重复?myfile.py 的主要内容包含:
print "\n[BG:INFO] Automatic generation of the machine features\n"
hostname = socket.gethostname()
rep=DeletePoints(hostname)
if exists(rep)==False:
print "\n[BG:INFO] The directory of work is: ", rep, "\n"