반응형
6장 함수를 만드는 방법
1. 본문 133쪽
def avg_of_three(a, b, c):
total = (a+b+c)/3
return total
avg_of_three(10, 20, 30)
avg_of_three(12, 24, 30)
avg_of_three(100, 200, 300)
2. 본문 134쪽
def avg_of_three(a, b, c):
total = (a+b+c)/3
return total
print(avg_of_three(10, 20, 30))
print(avg_of_three(12, 24, 30))
print(avg_of_three(100, 200, 300))
*코드 복사는 크롬 브라우저에서만 가능합니다. 크롬 외 브라우저(엣지, 웨일 등) 이용자는 아래 구글 드라이브 링크에서 복사 가능합니다.
https://docs.google.com/document/d/1th_JWq-canZ2ye12j5WOWfsFaCBXfz-Hzu7RbEeHWvM/edit?usp=sharing
반응형