database_tools中删除一个print

This commit is contained in:
weiye.wang 2024-02-09 18:15:05 +08:00
parent 3d4b9192b7
commit 37de841018
1 changed files with 1 additions and 1 deletions

View File

@ -1420,7 +1420,7 @@ def RefineInterval(string):
poslist = [(match.start(),match.end()) for match in matches]
poslist.reverse() #从后往前逐一更改
for s,e in poslist:
print(s,e)
# print(s,e)
rightdollar = newstring[e:].find("$")+e
rightbracket = rightdollar+1
rb = newstring[rightbracket]