ナビゲートして時間を表示したいので、データ分析に取り組んでいます。codeskulptor(python) を使用しており、次のコードを使用してナビゲートしました。
def keydown(key):
global season, year, navtime
if key == 37:
navtime += 1
season[2] = str(int(season[2]) - 3) # error
if int(season[0] - 3) <= 0:
year = str(int(year) - 1)
season = '10-12'
else:
season[0] = str(int(season[0] - 3))
if key == 39:
navtime -= 1
season[2] = str(int(season[2]) + 3) # error
if int(season[0] + 3) >= 12:
year = str(int(year) + 1)
season = '1-3'
else:
season[0] = str(int(season[0] + 3))
以前にすべての変数を定義しましたが、エラーが発生しました: TypeError: 'str' does not support item assignment
in python. これを修正するにはどうすればよいですか?
このプロジェクトには simplegui モジュールを使用しています。