質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.48%
Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

Q&A

解決済

1回答

1087閲覧

pythonの実行時のエラー

sary

総合スコア12

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

0グッド

0クリップ

投稿2020/03/31 08:18

pythonで辞書とファイル入力を使ったプログラムを作っています。macで「python3 ii.py」と実行したところエラーが出ました。

##発生している問題・エラーメッセージ 

Traceback (most recent call last): File "ii.py", line 31, in <module> if total >= excellent: TypeError: '>=' not supported between instances of 'tuple' and 'int'

該当のソースコード

# -*- coding: utf-8 -*- open_file = open('point.txt') raw_data = open_file.read() open_file.close() point_data = raw_data.splitlines() point_dict = {} for line in point_data: student_name, points_str = line.split(':') point_dict[student_name] = points_str score_dict = {} for student_name in point_dict: point_list = point_dict[student_name].split(',') subject_number = len(point_list) total = 0 for point in point_list: total = total + int(point) average = total / subject_number score_dict[student_name] = (total, average, subject_number) evaluation_dict = {} for student_name in score_dict: score_data = score_dict[student_name] total = score_data average = score_data[1] subject_number = score_data[2] excellent = subject_number * 80 good = subject_number * 0.65 if total >= excellent: evaluation = 'Excellent' if total >= good: evaluation = 'Good' else: evaluation = 'Bad' evaluation_dict[student_name] = evaluation file_name = 'evaluation.txt' output_file = open(file_name, 'w') for student_name in score_dict: score_data = score_dict[student_name] total = score_data[0] evaluation = evaluation_dict[student_name] text = '[{}] total: {}, evaluation: {}\n'.format(student_name, total, evaluation) output_file.write(text) output_file.close() print('評価結果を{}に出力しました'.format(file_name))

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

自己解決

25行目が間違っていました

投稿2020/03/31 08:27

sary

総合スコア12

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.48%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問