join()方法一般是字符串使用,str.join(iterable)。 参数是一个可迭代的对象。 例子: print('a'.join('bcde')) 输出:bacadae 即将前面的字符串放入可迭代对象之间