find & replace in csv file code example
Example: find & replace in csv file
text = open("input.csv", "r")text = ''.join([i for i in text]).replace("3", "e")x = open("output.csv","w")x.writelines(text)x.close()
text = open("input.csv", "r")text = ''.join([i for i in text]).replace("3", "e")x = open("output.csv","w")x.writelines(text)x.close()