반응형
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
- gas
- Kotlin
- 파이썬
- numpy
- c#
- Redshift
- string
- Tkinter
- GIT
- Github
- Mac
- Google Spreadsheet
- django
- math
- PySpark
- Google Excel
- Python
- Apache
- Java
- Excel
- google apps script
- PostgreSQL
- dataframe
- PANDAS
- matplotlib
- SQL
- array
- hive
- list
Archives
- Today
- Total
달나라 노트
Python math : fmod() (나머지, 나머지 구하기, remainder) 본문
728x90
반응형
math library의 fmod() method는 두 숫자의 나누기 결과에서 나머지를 return합니다.
Syntax
math.fmod(x, y)
x, y는 숫자입니다.
fmod() method는 x / y의 나머지를 return합니다.
예시를 봅시다.
import math
print(math.fmod(10, 6))
print(math.fmod(5, 2))
-- Result
4.0
1.0
- math.fmod(10, 6)
10 / 6을 하면 나머지가 4입니다. 따라서 return값이 4입니다.
- math.fmod(5, 2)
5 / 2를 하면 나머지가 1입니다. 따라서 return값이 1입니다.
return값은 모두 float type입니다.
728x90
반응형
'Python > Python math' 카테고리의 다른 글
Python math : sqrt() (제곱근) (0) | 2022.11.08 |
---|---|
Python math : pow() (거듭제곱, power) (0) | 2022.11.08 |
Python math : fabs (절대값) (0) | 2022.11.08 |
Python math : log, log2, log10 (python log 함수, python ln, 자연로그, numpy.log, numpy.log2, numpy.log10) (0) | 2022.01.16 |
Python math : ceil, floor, round (올림, 내림, 반올림) (0) | 2021.09.06 |
Comments