I am trying to create a program that takes an input from a user for a file name and then a text string and removes the string from the file. I have been at this one for a while and I have exausted just about every idea I had to get this program to work.
def main():
infile = open(input("Enter a file name: "), "r")
outfile = ""
str_rmv = input("Enter the string to be removed: ")
for line in infile:
print(line.replace(str_rmv, ""))
for line in infile:
outfile.write(line.replace(searchString, ""))
lines = [line.replace(searchString, "") for line in outfile]
outfile.seek(0)
outfile.truncate()
outfile.writelines(lines)
with open(pathname, "r") as infile:
with tempfile.NamedTemporaryFile("w") as outfile:
for line in infile:
outfile.write(line.replace(searchString, ""))
shutil.move(outfile.name, pathname)
infile.close()
outfile.close()
print("Done")
main()