我有台词
for line in fileinput.input(file_full_path, inplace=True):
newline, count = re.subn(search_str, replace_str, line.rstrip())
# ... display some messages to console ...
print newline # this is sent to the file_full_path
应该替换所有出现的search_str
在文件中file_full_path
并将它们替换为replace_str
. The fileinput
maps stdout
到给定的文件。所以,print newline
和东西发送到sys.stdout
被发送到文件而不是控制台。
我想在这个过程中向控制台显示一些消息,例如我可以显示将要发生替换的行的部分或其他一些消息,然后继续print newline
到文件中。这个怎么做?
来自 Python 文档:
可选的就地过滤:如果关键字参数 inplace=1 是
传递给 fileinput.input() 或 FileInput 构造函数,文件
被移动到备份文件并且标准输出定向到输入
文件(如果已存在与备份文件同名的文件,则
将被默默地替换)。
所以你应该写入 stderr 以在控制台中显示消息,如下所示:
import sys
for line in fileinput.input(file_full_path, inplace=True):
newline, count = re.subn(search_str, replace_str, line.rstrip())
sys.stderr.write("your message here")
print newline
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)