1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
def factorial(n):
if not isinstance(n, int) or n < 0:
return None
if n == 0:
return 0
if n == 1:
return 1
return n * factorial(n-1)
print(factorial(5)) #120
|
cs |
파이썬 팩토리얼
'programming' 카테고리의 다른 글
nth-of-type, nth-child (0) | 2019.04.08 |
---|---|
구글 스프레드 시트 - 조건부 서식 - 행에 색깔 넣기 (0) | 2019.04.04 |
우분투에서 mysql 접속이 안 되었을 때 (0) | 2019.04.02 |
c) c언어코딩도장 the 갯수 (0) | 2019.01.05 |
C) 공백 문자 갯수 구하기 (0) | 2018.12.29 |