Write a Python program to reverse a given tuple.
[You are not allowed to use tuple slicing]
Don't use slicing in the asnwer
===================================================================
Note:Unlike lists, tuples are immutable. So, in order to reverse a tuple, we may need to convert it into a list first, then modify the list, and finally convert it back to a tuple.
===================================================================
Example 1:
Given tuple: ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
Output:
('h', 'g', 'f', 'e', 'd', 'c', 'b', 'a')
===================================================================
Example 2:
Given tuple: (10, 20, 30, 40, 50, 60)
Output:
(60, 50, 40, 30, 20, 10)