関数str.joinの使い方の例

関数の機能:複数の文字列を繋げたものを返却

>>> s = '.'
>>> s.join(['a', 'b', 'c'])
'a.b.c'
>>> s = ' + '
>>> s.join(['a', 'b', 'c'])
'a + b + c'
関数を呼び出した文字列を区切りの文字列として、引数として渡した複数の文字列が繋げられます。
複数の文字列はリストやタプルの中に入れて引数として渡します。
関連項目
関数str.partition, str.rpartitionの使い方の例