Loading

摘要: #复制文件: shutil.copyfile("oldfile","newfile") #oldfile和newfile都只能是文件 shutil.copy("oldfile","newfile") #oldfile只能是文件,newfile可以是文件,也可以是目标目录 #复制文件夹: shutil 阅读全文
posted @ 2021-05-28 14:29 Guang'Jun 阅读(168) 评论(0) 推荐(0)
摘要: # 加载数据成字典(读) with open(annotations_file, "r") as fa: annotations = json.load(fa) # 上载数据成序列(写) with open("annotation/train_annotation.json", 'w') as fp 阅读全文
posted @ 2021-05-28 10:58 Guang'Jun 阅读(44) 评论(0) 推荐(0)