Go has detailed documentation. Visit pkg.go.dev to browse packages and read their docs. Every function, type, and constant is documented.
You can also run go doc followed by a package name in your terminal. For example, go doc fmt.Println shows the documentation for the Println function. Make a habit of reading docs. They're clearer than most tutorials.