美文网首页
1228|字符串

1228|字符串

作者: 喵在野 | 来源:发表于2015-12-28 08:31 被阅读25次

    replace 的用法

    replace(被替代的字符串,替代部分)

    >>> hiding_number = phone_number.replace(phone_number[:9],'*'*9)
    >>> print (hiding_number)
    *********0006
    

    format的用法
    {} 里面可以有变量名,数组编号,或者直接按顺序。

    >>> print ('{} a word she can get what she {} for.'.format('With','came'))
    With a word she can get what she came for.
    

    相关文章

      网友评论

          本文标题:1228|字符串

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