function 을 define(정의) 한다.
def 함수이름() :
body
{} <--걸로 function의 시작과 끝을 판단하지 않아.
indentation(들여쓰기)로 function의 시작과 끝을 판단
tab이든 space든 한번이 function의 body로 가게하는 역할을 함.
print function은 무한대의 인자를 가질 수 있어
def say_hello(name="anonymous"): // 기본값을 지정
print("hello", name)
say_hello("jin")
def r_plus(a,b) :
return a+b
r_result = r_plus(2,3)
print(r_result)
'프로그램 > python' 카테고리의 다른 글
20200329_#2.1 Extracting Indeed pages (0) | 2020.03.29 |
---|---|
20200328_#1.2 Theory elif modules (0) | 2020.03.28 |
20200326_#1.0 Theory Data type (0) | 2020.03.27 |