テキスト ファイルから 1 人以上の人の名前とさまざまなゲームでのスコアを取得するテーブルを作成し、各人のスコアの平均、最小、最大を見つけて表示する必要があります。
編集-ここに私の現在のコードがあります:
while name!='':
floor=text_file.readline().rstrip()
rings=text_file.readline().rstrip()
p_bars=text_file.readline().rstrip()
p_horse=text_file.readline().rstrip()
h_bar=text_file.readline().rstrip()
floor_int=int(floor)
rings_int=int(rings)
p_bars_int=int(p_bars)
p_horse_int=int(p_horse)
h_bar_int=int(h_bar)
score_sum=floor_int+rings_int+p_bars_int+p_horse_int+h_bar_int
avg=score_sum/5
番号のある行を計算し、名前のある行を除外するにはどうすればよいですか?
編集: そのコードを実行すると、次のようになります: TypeError: 'float' オブジェクトを str に暗黙的に変換できません
何か案は?