CovFunc.join# CovFunc.join(iterable, /)[fuente]# Concatenate any number of strings. The string whose method is called is inserted in between each given string. The result is returned as a new string. Example: “.”.join([“ab”, “pq”, “rs”]) -> “ab.pq.rs”