0
スリーにリストの要素を組み合わせる方法:私はこのようなリストのすべての2つの要素を組み合わせることができる午前
:colors=['green','yellow','red','green','yellow','red']
colors2=[x+y for x,y in zip(colors[0::2],colors[1::2])]
colors2
Out: ['greenyellow','redgreen','yellowed']
は、しかし、私は、リストのすべての三つの要素を組み合わせることができません
colors3=
[x+y+z for x,y,z in zip(colors[0::3],colors[1::4],colors[2::5])]
colors3
Out: ['greenyellowred']
他の3つは私のスライスの位置がずれていますか?