str.join(iterable) 使用

帮助文档解释:

Return a string which is the concatenation of the strings in the iterableiterable. A TypeError will be raised if there are any non-string values in iterable, including bytes objects. The separator between elements is the string providing this method.

理解:

str:字符串类型,为iterable对象拼接时的中间元素

输入参数:iterable,可迭代对象

函数功能:将参数拼接成一个字符串


实例:

对元组,列表都适用。

>>> aa = ('1','2','3')   
>>> ''.join(aa)
'123'
>>> print('123')    
123                                #print输出字符串内容,不包含单引号

列表:
>>> bb = ['a','b','c']
>>> ''.join(bb)
'abc'
>>>

你可能感兴趣的:(Python)