码迷,mamicode.com
首页 > 其他好文 > 详细

replace find join

时间:2018-03-31 12:02:48      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:join   对象   pos   aaa   rabl   HERE   ati   iterable   post   

>>> s=‘spam‘

>>> s=s.replace(‘m‘,‘111‘)

>>> s

‘spa111‘

 

>>> where=s.find(‘11‘)

>>> where

3

>>> s=s[:where]+‘eggs‘+s[(where+2):]

>>> s

‘spaeggs1‘

 

>>> L=list(s)

>>> L

[‘s‘, ‘p‘, ‘a‘, ‘e‘, ‘g‘, ‘g‘, ‘s‘, ‘1‘]

>>> s=‘‘.join(L)    #把对象插入到join的参数内,插入位置为参数内分隔符的位置,以对象作为分隔符  

>>> s

‘spaeggs1‘

>>> ‘spam‘.join([‘aaa‘,‘bbb‘,‘ccc‘,])    #S.join(iterable) -> str    Return a string which is the concatenation of the strings in the iterable.  The separator between elements is S.

‘aaaspambbbspamccc‘

replace find join

标签:join   对象   pos   aaa   rabl   HERE   ati   iterable   post   

原文地址:https://www.cnblogs.com/wawawawa-briefnote/p/8681269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!