1

我有一个列表形式为

[(u'a1', u'b1'),
 (u'a1', u'b2'),
 (u'c1', u'c2')]

我希望它两个被分成两个列表/列,比如

list1          list2    
[(u'a1',       [(u'b1'),
 (u'a1',       (u'b2'),
 (u'c1')]       (u'c2')]

将unicode转换为字符串也会有所帮助!

另外,在另一种情况下,我的列表形式为

[(('a', 'c'), -3), (('a', 'd'), -7), (('c', 'd'), -4)]

我需要以下形式的输入

('a','a','c')
('c','d','d')
(-3,-7,-4)

有小费吗?

4

2 回答 2

5

您可以使用列表推导创建两个新列表:

x=[(u'a1', u'b1'),
 (u'a1', u'b2'),
 (u'c1', u'c2')]

list1 = [i[0] for i in x]

list2 = [i[1] for i in x]
于 2013-03-10T18:21:02.043 回答
3

The second example:

>>> L = [(('a', 'c'), -3), (('a', 'd'), -7), (('c', 'd'), -4)]
>>> zip(*[(a[0], a[1], b) for a, b in L])
[('a', 'a', 'c'), ('c', 'd', 'd'), (-3, -7, -4)]

It first flattens each item and then transposes the list.

于 2013-03-10T18:24:51.293 回答