|
|
|
@ -94,10 +94,14 @@ async def main():
|
|
|
|
|
|
|
|
|
|
idx = 0
|
|
|
|
|
for q in questions:
|
|
|
|
|
# 干掉 【题型】前面的文档标题,比如: # 《动能定理》巩固练习
|
|
|
|
|
if idx == 0 and q != "":
|
|
|
|
|
idx = idx + 1
|
|
|
|
|
print("第"+str(idx)+"题:")
|
|
|
|
|
if q.strip() == "" or q=='\r\n' or q=='\n':
|
|
|
|
|
continue
|
|
|
|
|
# 干掉空行
|
|
|
|
|
if q.strip() == "" or q == '\n':
|
|
|
|
|
continue
|
|
|
|
|
q='【题型】'+q
|
|
|
|
|
print(q)
|
|
|
|
|
print("\n")
|
|
|
|
|
|
|
|
|
|