リストのリストで動作するはずの関数を書いています。この例を使用すると:
def mode(year):
monthAmount = len(year)
for month in year:
(month)Index = len(month)
これを実行したいのは、年が [1 月、2 月、3 月] であるとします。結果は次のようになります。JanuaryIndex = *、FebruaryIndex = *、MarchIndex = * など。いくつかの異なる月で。これを行う簡単な方法はありますか?ありがとう。