Contact: aviboots(AT)netvision.net.il
41,500 questions
54,078 answers
573 users
import math print(math.log(8, 10)) print(math.log10(8)) print(math.log10(2)) print(math.log10(0.4)) ''' run: 0.9030899869919434 0.9030899869919435 0.3010299956639812 -0.3979400086720376 '''