If I have a list of string objects and want to concatenate all these items, how do I do this? For example:
row1 = ['___', '___', '___']
I would like to print: '___|___|___'
I've been able to do this, but it's not very practical: line1 = row1[0] + "|" + row1[1] + "|" + row1[2]