Answers for "log base in python"

7

create log in python

logging.basicConfig(filename="logfilename.log", level=logging.INFO)
# Log Creation

logging.info('your text goes here')
logging.error('your text goes here')
logging.debug('your text goes here')
Posted by: Guest on October-28-2020
0

log base in python

import math
math.log(a,Base)
Posted by: Guest on January-19-2022

Python Answers by Framework

Browse Popular Code Answers by Language