标签:jpg python 文件复制 pen 内容 hue bytes 读取 class
f1 = open("c:/huyifei.jpg", mode="rb") f2 = open("d:/huerfei.jpg", mode="wb") for line in f1: # line是从f1中读取的内容 f2.write(line) # 把读取的内容原封不动的写出去 f1.close() f2.flush() f2.close()
标签:jpg python 文件复制 pen 内容 hue bytes 读取 class
原文地址:https://www.cnblogs.com/WANG-/p/10072348.html