pandas.Series.str.join — pandas 1.3.5 documentation
pandas.pydata.org › pandaspandas.Series.str.join¶ Series.str. join (sep) [source] ¶ Join lists contained as elements in the Series/Index with passed delimiter. If the elements of a Series are lists themselves, join the content of these lists using the delimiter passed to the function. This function is an equivalent to str.join(). Parameters sep str
pandas.DataFrame.join — pandas 1.3.5 documentation
pandas.pydata.org › api › pandasIf a Series is passed, its name attribute must be set, and that will be used as the column name in the resulting joined DataFrame. on str, list of str, or array-like, optional. Column or index level name(s) in the caller to join on the index in other, otherwise joins index-on-index. If multiple values given, the other DataFrame must have a ...