2012-04-07 Pythonで小数部分と整数部分をを分けてみる Python from math import modf n = 7.77 decimal, integer = modf(n) print decimal #-> 0.77 print integer #-> 7.0