Tuesday, September 24, 2024
Google search engine
HomeLanguagesPython | sympy.Float() method

Python | sympy.Float() method

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

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments