PTA 上 Python 代码疑难解答:如何避免get_sum和get_best方法中的错误累加和列表排序问题?

pta 上 python 代码疑难解答:如何避免get_sum和get_best方法中的错误累加和列表排序问题?

pta 上的 python 代码疑难解答

在 pta 平台上提交了一段 python 代码,却发现只通过部分测试点。下面分析问题,指出代码中的纰漏并提供相应的解决方案:

问题:

代码中get_sum方法中,每次遍历时都累加 self.sum_score,导致最终计算出的总分不正确。此外,在get_best方法中,使用了 list_score2 记录排序后的分数,但没有创建新的列表对象,导致两个变量指向同一个列表,排序后也会影响原本的 list_score1 列表。

解答:

get_sum 方法:

  1. 将 self.sum_score 初始赋值为 0。
  2. 每次遍历时,将该学生的总分累加到 list_score1 列表中。
  3. 遍历结束后,再计算出全班总分并存储到 student.sum_score 中。

get_best 方法:

  1. 在方法中创建一个新的列表对象,用于存储排序后的分数列表。
  2. 将 list_score1 排序后,再将其赋值给新创建的列表对象。

优化后的代码:

class Student:
    sum_score = 0

    def __init__(self, s_name, m_score, c_score, e_score):
        self.s_name = s_name
        self.m_score = m_score
        self.c_score = c_score
        self.e_score = e_score

    def get_sum(self):
        for i in range(0, list_len):
            self.sum_score = self.m_score[i] + self.c_score[i] + self.e_score[i]
            list_score1.append(self.sum_score)

    def get_best(self):
        sorted_list = sorted(list_score1)
        for k in range(0, list_len):
            if sorted_list[0] == list_score1[k]:
                best_name = self.s_name[k]
                print(f'{best_name} {self.m_score[k]} {self.c_score[k]} {self.e_score[k]}', end='')

以上就是PTA 上 Python 代码疑难解答:如何避免get_sum和get_best方法中的错误累加和列表排序问题?的详细内容,更多请关注其它相关文章!