在 Python 2.7 中,我有以下字符串:
"((1, u'Central Plant 1', u'http://egauge.com/'),
(2, u'Central Plant 2', u'http://egauge2.com/'))"
如何将此字符串转换回元组?我尝试使用split
了几次,但它非常混乱,而是列出了一个列表。
期望的输出:
((1, 'Central Plant 1', 'http://egauge.com/'),
(2, 'Central Plant 2', 'http://egauge2.com/'))
我在这里先向您的帮助表示感谢!