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