math.sqrt
math.pow
math.log
Returns x raised to the power y.
math.pow(x, y)
아래 값을 입력하면 예제에 즉시 반영됩니다.
import
math
print
import math print(math.pow(2, 10)) # 1024.0 print(math.pow(9, 0.5)) # 3.0