【发布时间】:2013-03-08 03:42:43
【问题描述】:
我有一个这样的列表:
[[(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']]
【问题讨论】:
-
为什么我不赞成这个问题:meta.stackexchange.com/a/149138/133242