반응형
for반복문 연습을 위한 것이므로 sum, len 함수 사용하지 않고 문제해결하기
# 🚨 Don't change the code below 👇
student_heights = input("Input a list of student heights ").split()
for n in range(0, len(student_heights)):
student_heights[n] = int(student_heights[n])
# 🚨 Don't change the code above 👆
#Write your code below this row 👇
i = 0
sum = 0
for height in student_heights:
sum += height
i += 1
avg = round(sum / i)
print(avg)
반응형
'파이썬 > exercise' 카테고리의 다른 글
5-3. python 짝수의 합 구하기(for반복문 연습) (0) | 2023.01.04 |
---|---|
5-2. python 최고/최소 점수얻기(for반복문 연습) (0) | 2023.01.04 |
4-3. python 가위바위보 게임 (0) | 2023.01.04 |
4-2. python nested list 보물지도 (0) | 2023.01.03 |
4-1. python random module, 동전 앞 뒤 무작위 (0) | 2023.01.03 |