美文网首页
2019实战第二期-字符串读书打卡

2019实战第二期-字符串读书打卡

作者: tipire | 来源:发表于2019-03-12 23:02 被阅读0次

    字符串替换与基本转换

    “{abc}”.format(abc='hello world')
    

    字符串常用方法

    test = 'With a moo-moo here, and a moo-moo there'
    #find使用找到对应的索引
    test.find('here')
    #join使用,使用分隔符将列表进行连接
    '||'.join(test.spilt(' '))
    #lower与upper使用,使字符串小写与大写
    test = "ABC"
    test.lower()
    test.lower().upper()
    #replace字符串替换
    test = 'With a moo-moo here, and a moo-moo there'
    test.replace('with','replace')
    #split对字符串进行分割
    test.spilt(' ')
    #strip去掉两端空格与tab
    test = "  df  "
    test.strip()
    

    相关文章

      网友评论

          本文标题:2019实战第二期-字符串读书打卡

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