How to Use Python’s Join() on a List of Objects (Not Strings)?
The most Pythonic way to concatenate a list of objects is the expression ”.join(str(x) for x in lst) that converts each object to a string using the built-in str(…) function in a generator expression. You can concatenate the resulting list of strings using the join() method on the empty string as a delimiter. The result … Read more