day 5-3 python 높은점수 구하기
리스트 내부에서 높은 점수를 찾아 출력하기 단 max() 함수를 쓰지 않고 출력할 것 Instructions You are going to write a program that calculates the highest score from a List of scores. e.g. student_scores = [78, 65, 89, 86, 55, 91, 64, 89] Important you are not allowed to use the max or min functions. The output words must match the example. i.e The highest score in the class is: x Example Input 78 65 89 86 55 91 64 89 In this c..
2023.02.27