1. 程式人生 > >python的join()函式

python的join()函式

def join(self, iterable): # real signature unknown; restored from __doc__
"""
S.join(iterable) -> str

Return a string which is the concatenation of the strings in the
iterable. The separator between elements is S.
"""

上面是庫函式的定義:可以看到join()函式的引數要求是一個可迭代物件,比如說:

1.字串

2.列表

3.元組

join()函式返回一個字串,這個字串是可迭代物件(即它的引數)中各個元素的結合,這個結合是以字元S為分隔符的。