Python:
Copy the content of inputfile.txt to outputfile.txt:
Copy the content of inputfile.txt to outputfile.txt:
with open("outputfile.txt","w") as fw,open("inputfile.txt") as f: for line in f: fw.write(line)
No comments:
Post a Comment