Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 answers
573 users
import math print(math.frexp(20)) print(math.frexp(16.2)) print(math.frexp(-20)) print(math.frexp(-14.5)) ''' run: (0.625, 5) (0.50625, 5) (-0.625, 5) (-0.90625, 4) '''