이 글은 한빛미디어의 ⟪혼자 공부하는 파이썬 2019 개정판⟫을 참고하여 작성되었음을 알려드립니다.
#함수 선언
def sum_all(start, end):
#변수 선언
output = 0
#반복문을 돌려 숫자 더하기
for i in range(start, end + 1):
output += i
#리턴
return output
#함수 호출
print(" 0 to 100:", sum_all(0, 100))
print(" 0 to 1000:", sum_all(0, 1000))
print(" 50 to 100:", sum_all(50, 100))
print(" 500 to 1000:", sum_all(500, 1000))
vscode로 출력해보면 다음과 같다.
출력결과는 다음과 같다.