string.join() method
.join(iterable)
myTuple = ("John", "Peter", "Vicky") x = "#".join(myTuple) print(x) # John#Peter#Vicky
Return a string which is the concatenation of the strings in iterable.
Clickable & Draggable!