Question: Write a program that copies all lines from a file source.txt into the file destination.txt try: f1 = open(source.txt,r) text = f1.readline) try: while not
Write a program that copies all lines from a file "source.txt" into the file "destination.txt" try: f1 = open("source.txt","r") text = f1.readline) try: while not eof: t2 = open("destination.txt", "W") f2.write(text) if text == ""; eof = False finally f1.close() f2.close()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
