Python基礎知識2——join 和 split 的使用方法
阿新 • • 發佈:2019-01-01
Python join用來連線字串,split用來拆分字串。
1、只針對字串進行處理。split:拆分字串、join連線字串
2、string.join(sep): 以string作為分割符,將sep中所有的元素(字串表示)合併成一個新的字串
3、string.split(str=' ',num=string.count(str)): 以str為分隔,符切片string,如果num有指定值,則僅分隔num個子字串。
Python join方法
a = 'abcd' print '+'.join(a) print '-'.join(['a','b','c']) print '.'.join({'a':1,'b':2,'c':3,'d':4})
--------output---------
a+b+c+d
a-b-c
a.c.b.d
Python split方法
s ='a b c'
print s.split(' ')
st ='hello world'
print st.split('o')
print st.split('o',1)
--------output---------
['a', 'b', 'c']
['hell', ' w', 'rld']
['hell', ' world']