1. math 모듈 math — Mathematical functionsThis module provides access to the mathematical functions defined by the C standard. These functions cannot be used with complex numbers; use the functions of the same name from the cmath module if...docs.python.org 일반 연산을 넘어, 조금 더 복잡한 산술 연산을 위한 math module.사용을 위해 import math 를 선언해야 한다. import math# math.ceil(x) 올림 math.ceil(2.3) # 3# math.floor(x) 내림 mat..