Open In App

Python | sympy.Float() method

Last Updated : 14 Jul, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of 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)


Output :

56.0000000000000

Example #2 :




# import sympy
from sympy import *
  
# Use sympy.Float() method
gfg = Float(456, 6)
    
print(gfg)


Output :

456.000


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads