반응형
# 🚨 Don't change the code below 👇
student_scores = input("Input a list of student scores : ").split()
for n in range(0, len(student_scores)):
student_scores[n] = int(student_scores[n])
print(student_scores)
# 🚨 Don't change the code above 👆
#Write your code below this row 👇
max = 0
for score in student_scores:
if score > max:
max = score
print(f"The highest score in the class is: {max}")
반응형
'파이썬 > exercise' 카테고리의 다른 글
5-4. python 비밀번호 생성기(shuffle) (0) | 2023.01.04 |
---|---|
5-3. python 짝수의 합 구하기(for반복문 연습) (0) | 2023.01.04 |
5-1. python 학생 평균키 구하기(for반복문 연습) (0) | 2023.01.04 |
4-3. python 가위바위보 게임 (0) | 2023.01.04 |
4-2. python nested list 보물지도 (0) | 2023.01.03 |