This is an old revision of the document!
Convert a numeric value to a fixed-point string with 5 decimal places.
from cubloc import Float Float(value: int | float)
value.
Returns the numeric value formatted as fixed-point text with 5 decimal places.
value is not numeric.from cubloc import Float # Example usage result = Float(1) print(result)