function2 [Python 기초] 함수 (Function) 함수란? 함수는 입력값을 가지고 어떤 일을 수행한 다음에 그 결과물을 내어놓는 것이다. 프로그래밍에서는 함수를 이용해 실행 과정을 약속할 수 있다. 함수를 사용하는 이유 반복적으로 사용되는 가치 있는 부분을 한 뭉치로 묶어서 "어떤 입력값을 주었을 때 어떤 결괏값을 돌려주기 위해 함수를 사용한다. 즉, 자주 사용되는 코드를 함수로 정의해 두면, 그 뒤로는 동일한 코드를 함수 이름만으로 실행시킬 수 있다. 파이썬 함수의 구조 def 함수이름(매개변수): # 첫 행 본문 # 함수를 호출했을 때 실행할 코드 블록 def는 함수를 만들 때 사용하는 예약어이며, 함수 이름 뒤 괄호 안의 매개변수는 이 함수에 입력으로 전달되는 값을 받는 변수이다. (예시) >>> def add(a, b): #add는 2개의 값을 .. 2020. 4. 23. [Baekjoon/Python] No.4673 Self Numbers No.4673 Self Numbers Problmes In 1949 the Indian mathematician D.R. Kaprekar discovered a class of numbers called self-numbers. For any positive integer n, define d(n) to be n plus the sum of the digits of n. (The d stands for digitadition, a term coined by Kaprekar.) For example, d(75) = 75 + 7 + 5 = 87. Given any positive integer n as a starting point, you can construct the infinite increasing.. 2020. 4. 23. 이전 1 다음