Skip to content

Instantly share code, notes, and snippets.

@xcombelle
Created August 31, 2015 16:55
Show Gist options
  • Select an option

  • Save xcombelle/21a9d0be9da438b76c95 to your computer and use it in GitHub Desktop.

Select an option

Save xcombelle/21a9d0be9da438b76c95 to your computer and use it in GitHub Desktop.
sed like replace in python
import fileinput
for line in fileinput.input(files=["test.txt"],inplace=True):
print(line.replace("toto","toto tutu"),end="")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment