Must show it in Python:
Please show step by step with comments.
Please show it in simplest form.
Please don't use any functions
Please don't use any def func ()
Input and Output must match with the Question
Please go through the Question very carefully.
Extracted text: Task 6 Write a Python program to reverse a given tuple. You are not allowed to use tuple slicing] ===== =========== =============--- == 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) ====== ===-- ============ ====== ===========%=