$Search: float, double, float32, float64
Go has floating point numbers corresponding to the IEEE 754 standard:
float32 is a 4 byte floating-point number (known as float in C)float64 is a 8 byte floating-point number (known as double in C)Zero value of float32 and float64 is 0.0.
FormatFloathttps://codeeval.dev/gist/266779f2c4f399ade5b270b0cd59b52f
Sprintfhttps://codeeval.dev/gist/63ea1a0e8e3655ddeef2686984d3b0f8
Using strconv.FormatFloat is faster than fmt.Sprintf.
ParseFloathttps://codeeval.dev/gist/04188c93abbc4b60d602a5ae4b1edb34
Sscanf