VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • python文件操作-读写删除复制总结(3)

 

第2种使用模块

1
2
3
with open("a.txt") as src,open("a_copy.txt",'w') as dest:
    dest.write(src.read())
print('复制成功啦!')


相关教程