复制文件
import shutil
source = './hello.cpp'
dest = './c_source/hello.cpp'
shutil.copy(source, dest)
# shutil.copyfile(source, dest)
copy vs copyfile
上一篇:random库
下一篇:Python内置函数