Given a tuple, remove an item from it. As tuples are immutable, you will need to convert the tuple to a list, remove the item, and then convert it back to a tuple. Write a Python program to implement this.
Example 1:
Input: (1, 2, 3, 4, 5), 3
Output: (1, 2, 4, 5)
Example 2:
Input: ('a', 'b', 'c', 'd', 'e'), 'c'
Output: ('a', 'b', 'd', 'e')