Zellerアルゴリズムhttp://en.wikipedia.org/wiki/Zeller%27s_congruenceを使用して生まれた曜日を通知するプログラムをPythonで作成しようとしていますが、このエラーが発生します
TypeError:サポートされていないオペランドタイプ-:'int'および'list'
何故ですか?
date = raw_input ("Introduce here the day, month and year you were born like this: DDMMYYYY")
if date.isdigit() and len(date) == 8:
day = date[0:2]
month = date[2:4]
year = date[4:8]
day = int(day)
month = int(month)
year = int(year)
result = (day + (month + 1) * 2.6, + year % 100 + (year % 100) / 4 - 2 * [year / 100]) % 7
(これは私が自分で作成した最初のプログラムですので、よろしくお願いします;))