# Python3 code to convert a tuple # into a string using str.join() method def convertTuple(tup): str = ''.join(tup) return str # Driver code tuple = ('h','e','l','l',' ','w','o','r','l','d') str = convertTuple(tuple) print(str)