✔ ceil : 올림 함수 이다.
import math
math.ceil(3.14) # 4 출력
✔ floor : 내림 함수이다.
import math
math.floor(3.84) # 3 출력
✔ factorial : 팩토리얼 함수 이다.
import math
math.factorial(5) # 5*4*3*2*1 = 120 출력
✔ gcd : 두 수의 최대공약수 ( 2개만 됨 )
import math
math.gcd(66, 22) # 11 출력
✔ sqrt : 제곱근 값을 반환한다.
import math
math.sqrt(10) # 3.1622776601683795 출력
int(math.sqrt(10)) # 3 출력 (소수점은 그냥 버림)