Quantcast
Viewing latest article 16
Browse Latest Browse All 20

Linear equations solver in 3 lines (Python)

Python recipe 365013 by Maxim Krikun (programs). Revision 2.

Just a little bit of hack: a linear equations solver using eval and built-in complex numbers:

>>> solve("x - 2*x + 5*x - 46*(235-24) = x + 2")
3236.0

Viewing latest article 16
Browse Latest Browse All 20

Trending Articles