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]