shutil模块(拷贝和压缩)
shutil模块:
作为os模块的补充,主要用来文件的拷贝和压缩
import shutil
shutil.copyfile('1.txt','1_copy.txt')
shutil.copytree('movie/港台','电影')