摘要: 一、t模式与b模式的区别 1.1、控制文件读写内容的模式 1.1.1、t 模式 (1)读写都是以字符串(unicode)为单位 (2)读写只能针对文本 (3)必须指定字符编码,即必须指定encoding参数 1.1.2、b 参数 (1)读写都是以二进制(bytes)为单位 (2)可以针对任意类型文件 阅读全文
posted @ 2020-03-16 21:53 疏星淡月 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1、通用文件copy工具实现 src_fire = input('复制路径》') dsc_fire = input('粘贴路径》') with open(r'{}'.format(src_fire),mode='rb')as f1,\ open(r'{}'.format(dsc_fire),mode 阅读全文
posted @ 2020-03-16 21:14 疏星淡月 阅读(140) 评论(0) 推荐(0) 编辑