回答:
Python 2の場合:
>>> list_a = [1, 2, 3, 4]
>>> list_b = [5, 6, 7, 8]
>>> zip(list_a, list_b)
[(1, 5), (2, 6), (3, 7), (4, 8)]
Python 3の場合:
>>> list_a = [1, 2, 3, 4]
>>> list_b = [5, 6, 7, 8]
>>> list(zip(list_a, list_b))
[(1, 5), (2, 6), (3, 7), (4, 8)]
s/zip_longest()/izip_longest()
。Python 3.xでに名前が変更されましたzip_longest()
。
itertools.product()
それを行います。
マップラムダを使用できます
a = [2,3,4]
b = [5,6,7]
c = map(lambda x,y:(x,y),a,b)
これは、元のリストの長さが一致しない場合にも機能します
map(None, a,b)
これは古い質問であり、すでに回答済みであることがわかっていますが、何らかの理由で、この代替ソリューションを投稿したいと思います。どの組み込み関数が必要な「マジック」を実行するかを見つけるのは簡単ですが、自分で実行できることを知っていても問題はありません。
>>> list_1 = ['Ace', 'King']
>>> list_2 = ['Spades', 'Clubs', 'Diamonds']
>>> deck = []
>>> for i in range(max((len(list_1),len(list_2)))):
while True:
try:
card = (list_1[i],list_2[i])
except IndexError:
if len(list_1)>len(list_2):
list_2.append('')
card = (list_1[i],list_2[i])
elif len(list_1)<len(list_2):
list_1.append('')
card = (list_1[i], list_2[i])
continue
deck.append(card)
break
>>>
>>> #and the result should be:
>>> print deck
>>> [('Ace', 'Spades'), ('King', 'Clubs'), ('', 'Diamonds')]
card
では、if-elif
あなたが持っている理由だと、必要とされていませんcontinue
。(実際、continue
あなたがいなければ、リストを変更する必要はありません。前述の両方の割り当てを保持しcard = (list_1[i], '')
、card = ('', list_2[1])
それぞれにする必要があります。)
問題文で示した出力はタプルではなくリストです
list_c = [(1,5), (2,6), (3,7), (4,8)]
チェックする
type(list_c)
list_aとlist_bからタプルとして結果を取得したい場合は、次のようにします。
tuple(zip(list_a,list_b))
<map object at 0x000001F266DCE5C0>
<zip object at 0x000002629D204C88>
itertools
モジュールはzip_longest()
、最長のリストの最後で停止するメソッドを定義し、パラメーターとして指定したもので欠損値を埋めます。