6장 코드
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)) *코드 복사는 크롬 브라우저에서만 가능합니다. 크롬 외 브라우저(엣지, 웨일 등) 이용자는 아..
더보기