student_scores = input().split()
for n in range(0, len(student_scores)):
student_scores[n] = int(student_scores[n])
highest_score = 0
for score in student_scores:
if score > highest_score:
highest_score = score
# 처음 반복 때에는 highest_score가 0이기 때문에 당연히 score가 크다.
# highest_score 값에 score 값을 저장해준다.
'python' 카테고리의 다른 글
[python] #연습문제 - 랜덤 비밀번호 생성기 만들기 (0) | 2024.05.29 |
---|---|
[python] 리스트 <-> 문자열 변환하기 (0) | 2024.05.29 |
[python] #연습문제 - 보물 숨기기 (+중첩리스트) (0) | 2024.05.26 |
[python] 리스트 속 아이템을 무작위로 하나 출력하기 (0) | 2024.05.26 |
[python] string 문에서 ', " 와 같은 특수기호 사용하기 (0) | 2024.05.26 |