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"

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!