人気の記事一覧

#どちらのスタイルで書いていますか? #Python a = ('ika', 'tako') for i in range(len(a)): #Unpythonic   print(a[i]) for i in a: #Pythonic   print(i)