def int_part_modf(x):
     return umath.modf(x)[1]
Пример #2
0
 def int_part_modf(x):
     return umath.modf(x)[1]
 def frac_part_modf(x):
     return umath.modf(x)[0]
Пример #4
0
 def frac_part_modf(x):
     return umath.modf(x)[0]