Advantages:
Go compiles very quickly. ( like C++ or java )
Go supports concurrency at the language level.
Functions are first class objects in Go.
Go has garbage collection.
Strings and maps are built into the language.
...
cmd := exec.Command("C:\\path\\to\\python.exe", "C:\\Users\\me\\go\\test.py")
output, err := cmd.Output()
...