database_tools中删除一个print
This commit is contained in:
parent
3d4b9192b7
commit
37de841018
|
|
@ -1420,7 +1420,7 @@ def RefineInterval(string):
|
||||||
poslist = [(match.start(),match.end()) for match in matches]
|
poslist = [(match.start(),match.end()) for match in matches]
|
||||||
poslist.reverse() #从后往前逐一更改
|
poslist.reverse() #从后往前逐一更改
|
||||||
for s,e in poslist:
|
for s,e in poslist:
|
||||||
print(s,e)
|
# print(s,e)
|
||||||
rightdollar = newstring[e:].find("$")+e
|
rightdollar = newstring[e:].find("$")+e
|
||||||
rightbracket = rightdollar+1
|
rightbracket = rightdollar+1
|
||||||
rb = newstring[rightbracket]
|
rb = newstring[rightbracket]
|
||||||
|
|
|
||||||
Reference in New Issue