2

2 つのリスト

ListOne = ['steve','rob','jym','rich','bell','mick']
ListTwo = [('steve',22 ,178), ('rob', 23 ,189), ('jym', 25,165), ('steven',18 ,187), ('Manro',16 ,200), ('bell',21 ,167), ('mick', 24 ,180)]

ListOne の生徒の ListTwo からデータだけを取得するにはどうすればよいですかtwo list intersections

次のような出力:

ListTwo = [('steve',22 ,178), ('rob', 23 ,189), ('jym', 25,165), ('bell',21 ,167), ('mick', 24 ,180)]

私はこれを試しましたが、もっと公式なものを探しています:

for row in ListTwo:   
    if row[0] in ListOne :
        print 'this student exist' + `row[0]`

    else :
        for i,e in enumerate(ListTwo):
        #Check the student with the above results, will be removed
            if row[0] == e: 
                temp=list(ListTwo[i])
                pprint.pprint('I will remove this student : ' + `e`)
                #Remove the Student
                for f, tmp in enumerate(temp):
                     temp[f]= []
                #pprint.pprint(temp)
                ListTwo[i]=tuple(temp)
4

2 に答える 2

7

リスト内包表記を使用します:

[rec for rec in ListTwo if rec[0] in ListOne]

より高速にするために、最初にリストをセットに変換することにより、リストルックアップをセットルックアップに置き換えることができます:

ListOne = set(ListOne)
于 2013-04-02T05:09:51.310 に答える
2

片道はでこぼこです

import numpy
a = numpy.array(list2)
print a[numpy.in1d(a[:,0],list1)]

しかし、shx2のアドバイスに従って、おそらくリスト内包表記を行うでしょう...numpyはあなたのタイプを変更します

これは、2d numpy 配列 (タプルの名前) の列 0 を取ります。

numpy.in1d[True,False,etc]名前が他のリストにあるかどうかに基づいてマスクを作成します

次に、元の配列を取り、ブール値のインデックスを使用します

>>> a = numpy.array(ListTwo)
>>> a[numpy.in1d(a[:,0],ListOne)]
array([['steve', '22', '178'],
       ['rob', '23', '189'],
       ['jym', '25', '165'],
       ['bell', '21', '167'],
       ['mick', '24', '180']],
      dtype='|S6')
>>>
于 2013-04-02T05:13:22.530 に答える