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