Python | sympy.Float() method
Last Updated :
14 Jul, 2019
Improve
With the help of
Python3 1=1
Output :
Python3 1=1
Output :
sympy.Float()
method, we can convert the integer values to floating point values and by using this method we can also set the values of precision. By default value of precision is 15.
Syntax : sympy.Float()
Return : Return the floating point number.
Example #1 :
In this example we can see that by using sympy.Float()
method, we can convert the integer value to floating point values with precision.
# import sympy
from sympy import *
# Use sympy.Float() method
gfg = Float(56)
print(gfg)
56.0000000000000Example #2 :
# import sympy
from sympy import *
# Use sympy.Float() method
gfg = Float(456, 6)
print(gfg)
456.000