Python 找到字符串中某个字符的所有位置
import re
a = "123123123"
for a in re.finditer('1', '123123123'):
print(a.span())
(0, 1)
(3, 4)
(6, 7)
Python 找到字符串中某个字符的所有位置
import re
a = "123123123"
for a in re.finditer('1', '123123123'):
print(a.span())
(0, 1)
(3, 4)
(6, 7)
本文标题:Python 找到字符串中某个字符的所有位置
本文链接:https://www.haomeiwen.com/subject/ignedqtx.html
网友评论