def int_part_modf(x):
     return umath.modf(x)[1]
Esempio n. 2
0
 def int_part_modf(x):
     return umath.modf(x)[1]
 def frac_part_modf(x):
     return umath.modf(x)[0]
Esempio n. 4
0
 def frac_part_modf(x):
     return umath.modf(x)[0]