我有一個這樣的名單:如何僅在Python中將此列表元組更改爲列表?
[[(u'[email protected]',)], [(u'[email protected]',)]]
我想這個轉換爲:
[['[email protected]'], ['[email protected]']]
我怎樣才能做到這一點?
又如: 輸入:[[(u'hello',), (u'hello',)], [(u'hello',)]]
應該返回[['[email protected]', '[email protected]'], ['[email protected]']]
我爲什麼downvoted這個問題:http://meta.stackexchange.com/a/149138/133242 – 2013-03-19 12:48:54