Getting a syntax error on the apostrophe in this line
def filecopy('example.txt','output.txt'): #<- Error here on the "'"
infile = open('example.txt',)
text = infile.read()
infile.close()
infile = open('output.txt')
outfile.write(text)
infile.close()