1
私のコードがこのエラーを表示している理由を理解できないようです。python:IndexError:タプルのインデックスが範囲外にある
IndexError: tuple index out of range
コード:
l = ['Simpson', ',', 'Bartholomew', 'Homer', 'G400', 'Year', '2']
x = '{}'* len(l)
print(x)
x.format(l)
print(x)
関連:[*何スター演算子の意味ですか?*](http://stackoverflow.com/q/2921847/416224) – kay