#どちらのスタイルで書いていますか
#Python

a = ('ika', 'tako')

for i in range(len(a)): #Unpythonic
  print(a[i])

for i in a: #Pythonic
  print(i)
画像1