If you want to convert a tuple to a string you can use the next suggestion: use the join function for an empty string with your tuple in parameters.

my_tuple = ('P', 'y', 't', 'h', 'o', 'n')
my_str = ''.join(my_tuple)
print(my_str)

Output:

Python