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
+10.3k Golang : Bubble sort example
+39.7k Golang : UDP client server read write example
+10.3k Android Studio : Checkbox for user to select options example
+7.1k Golang : How to convert strange string to JSON with json.MarshalIndent
+4.5k Chrome : How to block socketloop.com links in Google SERP?
+10.3k RPM : error: db3 error(-30974) from dbenv->failchk: DB_RUNRECOVERY: Fatal error, run database recovery
+15.2k Golang : rune literal not terminated error
+12.2k Golang : Exit, terminating or aborting a program
+18.4k Golang : convert int to string
+10.7k Golang : Simple image viewer with Go-GTK
+8.7k Golang : Go as a script or running go with shebang/hashbang style
+6.1k Unix/Linux : Use netstat to find out IP addresses served by your website server