文件遍历
root,subdir,file = os.walk()
subdir[:]=[] 不遍历子目录
文件读取
path+getcwd()
open(file,'r',encode='utf-8')
文件写入
open(file,'w',encode='utf-8')