Python 로그(log) 함수
2021.03.02
Python에서 log 함수는 "math"을 import해서 쓸 수 있다. import math 밑이 2인 로그 함수 ($ log_2 x$) import math print(math.log2(1)) # output: 0.0 print(math.log2(2)) # output: 1.0 print(math.log2(4)) # output: 2.0 print(math.log2(5)) # output: 2.321928094887362 밑이 10인 로그 함수 ($ log_{10} x $) import math print(math.log10(1)) # output: 0.0 print(math.log10(2)) # output: 0.3010299956639812 print(math.log10(10)) # output..