You cannot directly use Go for Python development; they are separate languages with different toolchains. Use the gopls language server for Go code editing in your IDE, or call Go binaries from Python using subprocess.
# Install the Go language server for IDE support
go install golang.org/x/tools/gopls@latest
# Call a Go binary from Python
import subprocess
result = subprocess.run(['./my-go-binary', 'arg1'], capture_output=True, text=True)
print(result.stdout)