int()

 
Returns integer portion of number (removes the decimal and any digits to the right of it)
Syntax
int( number )
User Annotations: int
Scott Shepard : ids at, southbound d0t com
04/16/2013 14:07 p.m.
To capture the right side of a number: 1.99, you want .99. The actual value returned will be 0.99 for this expression.
(l.mynumber - int(l.mynumber))