Answers for "how to replace all the string before a specific string in python"

2

python how to replace a certain string in text

# 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-14-2021

Code answers related to "how to replace all the string before a specific string in python"

Python Answers by Framework

Browse Popular Code Answers by Language