Answers for "replace a word on a line of file python"

8

python find and replace string in file

# Read in the file
with open('file.txt', 'r') as file :
  filedata = file.read()

# Replace the target string
filedata = filedata.replace('ram', 'abcd')

# Write the file out again
with open('file.txt', 'w') as file:
  file.write(filedata)
Posted by: Guest on August-31-2020
0

change part of a text file python

#!/usr/bin/env python3
import fileinput

with fileinput.FileInput(filename, inplace=True, backup='.bak') as file:
    for line in file:
        print(line.replace(text_to_search, replacement_text), end='')
Posted by: Guest on December-28-2020

Code answers related to "replace a word on a line of file python"

Python Answers by Framework

Browse Popular Code Answers by Language