ํ์ค๋ชจ๋
ํ์ด์ฌ์์ ๊ธฐ๋ณธ์ ์ผ๋ก ์ค์น๋์ด ์๋ ๋ชจ๋
# math - ์ํ ๊ด๋ จ ๋ชจ๋
import math
1. ์์ฃผ์จ
print(math.pi)
2. ์ฌ๋ฆผ
print(math.ceil(1.1))
3. ๋ด๋ฆผ
print(math.floor(1.9))
4. ์ ์๋ก ์ ์ญ
print(math.trunc(1.9)) #์ ์ญ
print(math.floor(1.9)) #๋ด๋ฆผ
print(math.ceil(1.9)) #์ฌ๋ฆผ
5. ์ ๊ณฑ๊ทผ
print(math.sqrt(25))
6. ์ ๊ณฑ
print(math.pow(2, 3))
'๐์น ๊ฐ๋ฐ(Web) > ๐ํ์ด์ฌ(Python)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
ํ์ด์ฌ time ๋ชจ๋ (0) | 2023.02.01 |
---|---|
ํ์ด์ฌ ๋๋ค random ๋ชจ๋ (0) | 2023.02.01 |
ํ์ด์ฌ ๋ชจ๋(module) (0) | 2023.02.01 |
ํ์ด์ฌ ํจ์(function) (0) | 2023.01.30 |
ํ์ด์ฌ ๊ต์งํฉ intersection() ํฉ์งํฉ union() ์ฐจ์งํฉ difference() (0) | 2023.01.30 |