Re: Python library for working with simple equations

2010-02-18 Thread geremy condra
On Thu, Feb 18, 2010 at 4:09 AM, lallous wrote: > Hello > > Is there is any Python library that allow such things: > > Given a string expression as: x + 5 + x * (y + 2), any library that > can develop the equation for example. > Or if we say factor with "x" then it renders the expression with x *

Re: Python library for working with simple equations

2010-02-18 Thread Daniel Fetchinson
>> Given a string expression as: x + 5 + x * (y + 2), any library that >> can develop the equation for example. >> Or if we say factor with "x" then it renders the expression with x * >> ( rest of expression ). >> There could be a functionality where when x,y are given then the >> expression can be

Re: Python library for working with simple equations

2010-02-18 Thread Daniel Fetchinson
> Given a string expression as: x + 5 + x * (y + 2), any library that > can develop the equation for example. > Or if we say factor with "x" then it renders the expression with x * > ( rest of expression ). > There could be a functionality where when x,y are given then the > expression can be evalu

Re: Python library for working with simple equations

2010-02-18 Thread Chris Rebert
On Thu, Feb 18, 2010 at 1:09 AM, lallous wrote: > Hello > > Is there is any Python library that allow such things: > > Given a string expression as: x + 5 + x * (y + 2), any library that > can develop the equation for example. > Or if we say factor with "x" then it renders the expression with x *

Python library for working with simple equations

2010-02-18 Thread lallous
Hello Is there is any Python library that allow such things: Given a string expression as: x + 5 + x * (y + 2), any library that can develop the equation for example. Or if we say factor with "x" then it renders the expression with x * ( rest of expression ). There could be a functionality where