math 모듈

JYJ·2022년 3월 23일
0

Python

목록 보기
9/14

math module


  • math 모듈을 사용하려면 math 모듈을 import 해야한다.

ceil


✔ ceil : 올림 함수 이다.

import math
math.ceil(3.14)  # 4 출력

floor


✔ floor : 내림 함수이다.

import math
math.floor(3.84)  # 3 출력

factorial


✔ factorial : 팩토리얼 함수 이다.

import math
math.factorial(5)  # 5*4*3*2*1 = 120 출력

gcd


✔ gcd : 두 수의 최대공약수 ( 2개만 됨 )

import math
math.gcd(66, 22)  # 11 출력

sqrt


✔ sqrt : 제곱근 값을 반환한다.

import math
math.sqrt(10)  # 3.1622776601683795 출력

int(math.sqrt(10))  # 3 출력 (소수점은 그냥 버림)

profile
Study note

0개의 댓글