63
57

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python zipとenumerateの使い方

Last updated at Posted at 2017-08-31

python2.Xの記事を見つけてpython3.Xでも動作確認したので備忘録として書いてます

準備

list.py
a = ['','','','','']
b = ['','','','','']

例えばこういうリストがあったとする。

enumerate

enumerate.py
for i,ai in enumerate(a):
  print(i,ai)

とすると

実行結果
0 あ
1 い
2 う
3 え
4 お

こんな感じになる

zip

zip.py
for ai, bi in zip(a, b):
  print(ai, bi)

とすると

実行結果
あ か
い き
う く
え け
お こ

こんな感じ。ちなみに3つ以上のリストも同様にしてまとめられる。

enumerate & zip

enumerateとzipを同時に使いたいときに

error.py
for i, ai, bi in enumerate(zip(a, b)):
  print(i, ai, bi)

このように書くとエラーを起こした。

実行結果
ValueError: not enough values to unpack (expected 3, got 2)

で、何か方法はないかと調べた結果、下のようにすれば良いらしい。

success.py
for i,(ai, bi) in enumerate(zip(a, b)): # zipのところを()で囲った
  print(i, ai, bi)
実行結果
0 あ か
1 い き
2 う く
3 え け
4 お こ

参考

63
57
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
63
57

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?