美文网首页
18.提取,替换

18.提取,替换

作者: 酷睿i1999 | 来源:发表于2019-02-19 09:05 被阅读0次

    1.str() 将其他类型变成字符串类型

    2.[]提取字符

    正向搜索:[0,len(str)-1]

    反向搜索:[-1,-len(str)]

    3.replace替换

    str.replace(“x”,”y”)  用y替换x

    replace并没有修改原字符串,而是创建了一个新字符串,字符串是不可变的。

    相关文章

      网友评论

          本文标题:18.提取,替换

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