I have a list which contains:
["('apple','banana')","('orange','cherry')"]
I want to remove the quotes from the list and convert it into a tuple I tried to use
tuple(list1)
But I am getting:
("('apple','banana')", "('orange','cherry')")
OR
I want the output to be:
('apple','banana'),('orange','cherry')
also this output could help:
[('apple','banana'),('orange','cherry')]