This repository has been archived on 2024-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mathdeptv2/工具v2/json编辑题目综合信息.py

14 lines
295 B
Python

id_string = "21370"
prodictpath = "../题库0.3/Problems.json"
editor = "王伟叶"
from database_tools import *
pro_dict = load_dict(prodictpath)
editedid_list = jsonEditProblemMetadata(id_string,pro_dict,editor)
save_dict(pro_dict,prodictpath)
print("题号 %s 已编辑."%editedid_list)