split()

作者: 叶田的学习笔记 | 来源:发表于2018-11-05 12:41 被阅读0次
    str = "this  is  string example....wow!!!"
    print(str.split())
    print(str.split(' '))
    print(str.split('i',1))
    print(str.split('w'))
    
    结果:
    ['this', 'is', 'string', 'example....wow!!!']
    ['this', '', 'is', '', 'string', 'example....wow!!!']
    ['th', 's  is  string example....wow!!!']
    ['this  is  string example....', 'o', '!!!']
    

    相关文章

      网友评论

          本文标题:split()

          本文链接:https://www.haomeiwen.com/subject/zcqsxqtx.html