data = ["some", "data", "lots", "of", "strings"] print(".".join(data)) some.data.lots.of.strings print(",".join(data)) some,data,lots,of,strings