The sympy.frac(x) function represents the fractional part of x. For real numbers, it is defined as, x – [x]
Syntax : sympy.frac()
Return : Return the simplified mathematical expression.
Example #1 :
Python3
# import sympy from sympy import * # Use sympy.frac() method gfg = frac( 5.36 ) print (gfg) |
Output :
0.36
Example #2 :
Python3
# import sympy from sympy import * # Use sympy.frac() method gfg = frac(Rational( 7 , 5 )) print (gfg) |
Output :
2 / 5