python 编写一个程序,实现文件的复制。程序的任务是将当前目录下filecopy.in文件复制成filecopy.out。
时间: 2024-03-23 15:36:23 浏览: 161
FileCopy2.rar_MFC文件复制_mfc cwinthread_多线程复制_多线程类_文件复制MFC
可以使用 Python 的 shutil 模块来实现文件的复制。具体代码如下:
```python
import shutil
shutil.copy('filecopy.in', 'filecopy.out')
```
这段代码会将当前目录下的 filecopy.in 文件复制成 filecopy.out 文件。如果 filecopy.out 文件不存在,则会新建一个文件。如果 filecopy.out 文件已存在,则会覆盖原有文件。
阅读全文