반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- numpy
- string
- SQL
- django
- Mac
- Google Excel
- Redshift
- 파이썬
- math
- Excel
- Tkinter
- Python
- c#
- Java
- Apache
- Google Spreadsheet
- gas
- list
- PySpark
- google apps script
- PostgreSQL
- array
- Github
- PANDAS
- GIT
- dataframe
- Kotlin
- matplotlib
- hive
Archives
- Today
- Total
달나라 노트
Python math : factorial() (!, factorial, 팩토리얼) 본문
728x90
반응형
math library의 factorial() method는 특정 숫자의 factorial 값을 return합니다.
Syntax
math.factorial(x)
x는 숫자입니다.
전달받은 x의 팩토리얼 값을 return합니다.
팩토리얼 값을 계산하기 때문에 x는 양의 정수만을 받습니다.
(실수, 음수 등을 전달하면 error가 발생합니다.)
예시를 봅시다.
import math
print(math.factorial(5))
-- Result
120
- math.factorial(5)
5!의 값을 계산하여 return합니다.
5! = 5 * 4 * 3 * 2 * 1 = 120 이므로 120이 return됩니다.
728x90
반응형
'Python > Python math' 카테고리의 다른 글
Python math : modf() (실수의 정수부 소수부 분리) (0) | 2022.11.08 |
---|---|
Python math : sqrt() (제곱근) (0) | 2022.11.08 |
Python math : pow() (거듭제곱, power) (0) | 2022.11.08 |
Python math : fmod() (나머지, 나머지 구하기, remainder) (0) | 2022.11.08 |
Python math : fabs (절대값) (0) | 2022.11.08 |
Comments