Python strip函式和split函式

VictorLeeLk發表於2017-08-24
#encoding:utf-8
'''
s.strip(rm)
s為字串,rm為要刪除的序列
rm為空時,刪除首尾空白符
這裡rm刪除序列,只要邊上的字元在刪除序列之內,就刪除掉
'''
s='hello world'
s1=s.strip('held')
print s,'\n',s1
'''
輸出:
hello world 
o wor
'''


'''
二、spilt函式
分割函式,將字串分割成字元或字串,儲存在一個列表裡面
'''
def spi():
    a='a b c d'
    print a.split() #['a', 'b', 'c', 'd']

    b='name=ding| age=25|job=IT'
    print b.split('|')   #['name=ding', ' age=25', 'job=IT']

    c='a b c d'
    print c.split(' ',1)#['a', 'b c d']
    '''
    切一刀
    '''

if __name__=='__main__':
    spi()
    print  '''
    googl\n
    hell  ds \t

    '''
    #輸出為:
    '''

    googl

    hell  ds    


    '''

相關文章