'목록하단 광고 치환자(withSeok)
728x90
39

 

1
2
3
4
5
6
7
8
9
10
11
# 재귀호출 프로그램
 
 
def factorial(n):
  if n==0:
    return 1 # 재귀 함수 종료 조건.
  else:
    return n * factorial(n-1)
    # n! = n * (n-1)!
  
print(factorial(4))
cs

 

 

39

 

1
2
3
4
5
6
7
# 내장함수
 
print(abs(-3)) # 절댓값
print(round(1.5)) # 반올림
print(round(3.14159, 2))
  # 소수점 아래 둘 째자리까지
print(round(3.14159, 3))
cs

 

 

39

 

 

 

 

 

39

 

 

 

 

 

39

 

 

 

 

 

39

 

 

 

 

 

39

 

 

 

 

 

39

 

 

 

 

 

39

 

 

 

 

 

39

 

 

 

 

 

728x90

+ Recent posts