我有一个这样的列表:
[[(u'hello@hello.com',)], [(u'hello@hello.com',)]]
我想将其转换为:
[['hello@hello.com'], ['hello@hello.com']]
我怎样才能做到这一点?
另一个例子:输入:[[(u'hello',), (u'hello',)], [(u'hello',)]]
应该返回[['hello@hello.com', 'hello@hello.com'], ['hello@hello.com']]