Using Python and SciPy to find the zeros of a function can be done with the scipy.optimize.fsolve function. This function takes a function, and an initial guess, and returns the zero of the function.
The posted code files explain how to solve systems of nonlinear equations in Python by using the function fsolve(). The tutorial webpages accompanying the posted code files are given here: 1. Solve ...