일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- google apps script
- numpy
- Kotlin
- Github
- PANDAS
- string
- gas
- Google Excel
- Java
- PySpark
- hive
- SQL
- PostgreSQL
- Tkinter
- math
- 파이썬
- GIT
- array
- list
- Redshift
- Google Spreadsheet
- matplotlib
- Excel
- Python
- dataframe
- Mac
- django
- c#
- Apache
- Today
- Total
목록Python/Python math (8)
달나라 노트
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입니다.
math library의 fabs() method는 절대값을 return합니다. Syntax math.fabs(x) 예시를 봅시다. import math print(math.fabs(-10)) print(math.fabs(5)) print(math.fabs(-10.6)) -- Result 10.0 5.0 10.6 위 결과를 보면 fabs() method의 인자로 전달된 숫자에서 부호가 모두 사라지고 절대값이 return된 것을 볼 수 있습니다. 여기서 한가지 눈여겨볼건 fabs(-10), fabs(5)의 return값이 각각 10.0, 5.0입니다. 정수를 전달했는데 float type의 숫자가 return되었습니다. 따라서 fabs() method는 결과를 float type으로 return합니다.
math library에서는 log함수를 지원합니다. 기본적으로 다음과 같이 3가지가 있습니다. math.log() = 밑이 e(자연 상수)인 log math.log2() = 밑이 2인 log math.log10() = 밑이 10인 log import math result = math.log(math.e) print(result) result = math.log2(2) print(result) result = math.log10(10) print(result) -- Result 1.0 1.0 1.0 math의 log method는 위처럼 사용할 수 있습니다. log method의 괄호 안에 log를 적용할 값을 넣어주면 되는것이죠. numpy library의 log 함수와 매우 흡사합니다. (numpy ..
먼저 python의 기본 반올림 함수로 round 가 있습니다. round(number, digit) number --> 반올림을 적용할 숫자입니다. digit --> 반올림 하여 얻은 결과에 소수점이 몇개나 있을지에 대한 숫자입니다. 이것의 의미는 아래 예시에서 보겠습니다. print(round(1738.7926)) # 1 --> 1739 print(round(1738.7926, 0)) # 2 --> 1739.0 print(round(1738.7926, 1)) # 3 --> 1739.8 print(round(1738.7926, 2)) # 4 --> 1739.79 print(round(1738.7926, 3)) # 5 --> 1739.793 print(round(1738.7926, -1)) # 6 -->..