Python strip函数和split函数

#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    


    '''

你可能感兴趣的:(Python)