I have currently a tuple of:
('(102,117,108)', '(108,32,116)', '(101,120,116)', '(32,105,115)', '(32,103,111)', '(111,100,32)')
How would I convert it to:
((102,117,108), (108,32,116), (101,120,116), (32,105,115), (32,103,111), (111,100,32))
Any help is much appreciated!