美文网首页
Python 找到字符串中某个字符的所有位置

Python 找到字符串中某个字符的所有位置

作者: ElonYanJ | 来源:发表于2019-01-15 11:52 被阅读16次

    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