How do I find the type of an object in Go? In Python, I just use typeof to fetch the type of object. Similarly in Go, is there a way to implement the same ?
typeof
You can just use the fmt package fmt.Printf() method, more information: https://golang.org/pkg/fmt/
example: https://play.golang.org/p/aJG5MOxjBJD