So I did:
def fcopy(original, copy):
'creates a copy of file original named copy'
    infile = open(original)
    content = infile.read()
    print(content)
But this only print out what's in the original file. No clue how to copy the content of original to the copy file.
 
    