In Python 2.7, I have the following string:
"((1, u'Central Plant 1', u'http://egauge.com/'),
(2, u'Central Plant 2', u'http://egauge2.com/'))"
How can I convert this string back to tuples? I've tried to use split
a few times but it's very messy and makes a list instead.
Desired output:
((1, 'Central Plant 1', 'http://egauge.com/'),
(2, 'Central Plant 2', 'http://egauge2.com/'))
Thanks for the help in advance!