from shutil import copyfile
copyfile(src, dst)
import shutil
shutil.copyfile('src','dst')
shutil.copyfile('file.txt','file-copy.txt') # Copy contents alone
shutil.copy('file.txt','file-copy.txt') # Copy content and permission
shutil.copy2('file.txt','file-copy.txt') #Copy content, permission and metadata
from shutil import copy
# Copy with file permission and dest can be a folder
copy (src,dest)