I don't think there is "a niche" for Go.
It's a young language, and it was a little demanding at first, which justifies it's less known and used than java or php. But it's a full language, meaning you can do most of what you can do with any programming language.
There are a few fields on which Go's specificities has consequences :
Go doesn't shine today in
- drivers and very low level stuff (GC, and no evident advantage over C)
- rich desktop UI (no totally complete cross platform UI library, no dedicated packages [but see kikito's comment below])
- desktop games (same as UI, and no integration of the game API like DirectX)
- mobile applications (most mobile development is done using one of the few dedicated frameworks and interaction with the system is very specific. This could change with the emergence of a real mobile open source ecosystem but it's not here)
As the question is about a comparison with Python, I don't think those areas would be much easier to deal with in Python.
Go is very suited today for
- small utilities (small clear programs, easy to make, using the wonderful standard libraries)
- servers (simple standard packages for ip, http, json, websockets, database, etc. efficient parallelization, speed and stability, gc), especially servers dealing with complex tasks or interaction with many systems (safe and efficient parallelism)
- any long running programs (GC, and the fact that Go is safer than most languages : once compiled and first tested a Go program has usually less remaining bugs)
It can be added that Go has important advantages for open-source or multi-teams development :
- standard management of external open sourced packages, from the fetching to the updates and linking
- clarity, simplicity, meaning you fast understand what does a package and how to use it
- standard formatting, meaning you can read other people's code
- standard and light testing framework
- speed and simplicity of build
A last point because you mention C# and Go : It's a pleasure to code in Go. Really. The main reason is probably that you don't spend a lot of time feeling you're just typing to satisfy the compiler or the library you use (in my opinion the need to use an IDE to generate or refactor code is the sure proof a language is too verbose).