python) Explanation of the Code Using a Dictionary to Represent Students
def create_student(name, korean, math, english, science): return { "name": name, "korean": korean, "math": math, "english":english, "science": science } students = [ create_student("윤인성", 87,98,88,95), create_student("연하진",92,98,96,98), create_student("구지연",98,96,90,89), create_student("나선주",88,86,64,87), create_student("윤아린",98,99,78,80), ] print("name", "total", "average", sep="\t") for studen..
2024. 11. 7.