Golang : Generate random integer or float number
Was helping out a friend last Sunday to finish up his Golang project and encounter a problem where we need to generate random integer or float number. Below is a snippet of the code that we used to generate the random numbers. Hope this can be useful to your work/project as well.
package main
import (
"math/rand"
"fmt"
)
func randSeed() (p []byte) {
for i := 0; i < 10; i++ {
p = append(p, byte(rand.Intn(512)))
}
return
}
func main() {
b := randSeed()
fmt.Println(b)
}
In case you are looking for random float number. This should do the trick :
fmt.Println(rand.Float64()) // rand.Float64 returns a float64 value f ... between 0.0 <= f < 1.0.
and if 0.0 to 1.0 is not what you wanted. You can tweak it to become in between 5.0 <= f < 10.0 with is this line
fmt.Print((rand.Float64() * 5) + 5)
Reference :
See also : Generate Random number with math/rand in Go
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+13.7k Golang : convert rune to unicode hexadecimal value and back to rune character
+8k Golang : Emulate NumPy way of creating matrix example
+9.3k Golang : Extract or copy items from map based on value
+5.6k Javascript : How to replace HTML inside <div>?
+4.2k Golang : Valued expressions and functions example
+6.9k Golang : A simple forex opportunities scanner
+12.4k Golang : Add ASCII art to command line application launching process
+46.1k Golang : Encode image to base64 example
+27.1k Golang : Convert CSV data to JSON format and save to file
+19.6k Golang : Count JSON objects and convert to slice/array
+17k Golang : When to use init() function?
+11.5k Golang : Gorilla web tool kit secure cookie example