go from floating point to string code example
Example 1: Go convert float to a string
s := fmt.Sprintf("%f", 123.456) // s == "123.456000"
Example 2: go convert a string (with decimals) to a floating point number.
f, err := strconv.ParseFloat(s, 64)