python 字符串

作者: 红豆汤来两大碗 | 来源:发表于2020-04-14 04:03 被阅读0次

    更改字符串部分
    a = 'hello word 123'
    import re
    b = re.compile('word').sub('python', a)
    print(b)

    相关文章

      网友评论

        本文标题:python 字符串

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