我想出了这段代码来计算字符串中的多个子字符串。我需要它以元组的形式返回结果。有什么建议么?
def FindSubstringMatch(target, key):
PositionList = 0
while PositionList < len(target):
PositionList = target.find(key, PositionList)
if PositionList == -1:
break
print(PositionList)
PositionList += 2
FindSubstringMatch("atgacatgcacaagtatgcat", "atgc")
这段代码打印:5 15
我希望它返回:(5,15)