Answers for "replace ner with data using python"

1

python string replace variable

var = '{foo} {foo} {foo}'.format(foo = 'python you so crazy')
Posted by: Guest on December-07-2021
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

Python Answers by Framework

Browse Popular Code Answers by Language