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/多选题转为填空题.py

13 lines
183 B
Python

from database_tools import *
data = getCopy()
try:
output = MultiplechoicetoBlankFilling(data)
setCopy(output)
print("处理完成")
except:
print("处理失败")