To convert a float to string in Go Golang you can use the string format function fmt.Sprintf
myString := fmt.Sprintf("%f", 312.423)
Source: https://golang.org/pkg/strconv/
Exploration of Information, Communication and Technology
To convert a float to string in Go Golang you can use the string format function fmt.Sprintf
myString := fmt.Sprintf("%f", 312.423)
Source: https://golang.org/pkg/strconv/