Programme Python pour convertir le tuple en chaîne
# 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)
Difficult Dugong