#convert the following tuple into useful string:

my_tuple = ('P','y','t','h','o','n','P','r','o','g','r','a','m','m','i','n','g')

my_string = "".join(my_tuple)

print(my_string)

#if we want to convert again into a tuple:

myTuple = tuple(my_string)

print(myTuple)

#if we want to convert tuple into a list:

my_list = list(myTuple)

print(my_list)