以下6行目のfor_point in point_list:が構文エラーになってしまいます。修正点をご指導いただけないでしょうか?
your_point = input('点数をカンマ区切りで入力してください: ')
point_list = your_point.split(',')
total = 0
for_point in point_list:
total +=int(point)
subjects_number = len(point_list)
excellent = subjects_number * 100 * 0.8
good = subjects_number * 100 * 0.65
if total >= good
evaluation = 'Excellent'
elif total >= good:
evaluation = 'Good'
else:
evaluation = 'Bad'
print('点数の評価は{}です。'.format(evalution))
回答1件
あなたの回答
tips
プレビュー