python
一个在路上的小白
这个作者很懒,什么都没留下…
展开
-
python 存txt
def Save_list(list1,filename): file2 = open(filename + '.txt', 'w') for i in range(len(list1)): for j in range(len(list1[i])): file2.write(str(list1[i][j])) # write函数不能写int类型的参数,所以使用str()转化 file2.write('...转载 2020-06-19 10:57:35 · 324 阅读 · 0 评论 -
python 图片复制
#coding:utf-8 import os import shutil for name in open('d:/py_code/c5/c55.txt','r'): print(name) oldpath='D:/处理照片/1-310/' newpath='D:/处理照片/c5/' if os.path.exists(oldpath+name[:-1]): shutil.copy(oldpath+name[:-1],newpath+name[:-1]) ...转载 2020-06-19 10:55:13 · 900 阅读 · 0 评论