Write a python program to copy the content of one file into another. code example
Example: copy contect from file tot other file python
# open both files
with open('first.txt','r') as firstfile, open('second.txt','a') as secondfile:
# read content from first file
for line in firstfile:
# write content to second file
secondfile.write(line)