Contact: aviboots(AT)netvision.net.il
41,500 questions
54,078 answers
573 users
import math print(math.log2(8)) print(math.log2(2)) print(math.log2(0.4)) ''' run: 3.0 1.0 -1.3219280948873622 '''