Skip to main content
my python programs
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
January 15, 2021
Copy content of one file to another
f1=open('file','r')
f2=open('file1','w')
f2.write(f1.read())