6 lines
187 B
Python
6 lines
187 B
Python
with open("data.txt", "r", encoding="utf-8") as infile:
|
|
lines = infile.readlines()
|
|
|
|
with open ("output.txt" ,"w" encoding="utf-8" as outfile:
|
|
outfile.writelines(transformed_data)
|