반응형
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
- google apps script
- Apache
- dataframe
- hive
- Python
- Excel
- c#
- math
- gas
- PostgreSQL
- GIT
- SQL
- list
- Kotlin
- Redshift
- matplotlib
- string
- django
- numpy
- array
- Mac
- Java
- Github
- PySpark
- Google Spreadsheet
- Tkinter
- 파이썬
- Google Excel
- PANDAS
Archives
- Today
- Total
목록나머지 (2)
달나라 노트
Python math : fmod() (나머지, 나머지 구하기, remainder)
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입니다.
Python/Python math
2022. 11. 8. 20:13