我正在尝试使用 Python(通过 Linux 终端)替换文本文件以下行中的“示例”一词text_file.txt
:
abcdefgh example uvwxyz
我想要的是:
abcdefgh replaced_example uvwxyz
我可以用 Python 中的单线来做到这一点吗?
编辑:
我有一个 perl 单行perl -p -i -e 's#example#replaced_example#' text_file.txt
,但我也想用 Python 来做