I will try to explain what I want to do:
I will some polynomial approximation calculations in Python. And my aim is not to use numbers. I want to work with the symbols like x,y,c etc. But I couldn’t find any way to use them in calculations. Simply I want to do that:
JavaScript
x
3
1
x=c1
2
y=c2
3
These x and y are my variables in the script.
JavaScript
1
3
1
x+y
2
print(x+y)
3
When I did print(x+y)
, I want to see c1+c2
on the screen. In the same way,
JavaScript
1
3
1
2*x
2
print(2*x)
3
When I did print(2*x)
, I want to see 2c1
or 2*c1
on the screen. The same conditions should be valid for multiply and subtraction.
Can I do in Python and which library or function that I should use?
Advertisement
Answer
You should try sympy. It does what you want:
JavaScript
1
10
10
1
import sympy as sym
2
c1 = sym.Symbol('c1')
3
c2 = sym.Symbol('c2')
4
x=c1
5
y=c2
6
7
print(x+y)
8
9
print(2*x)
10
Output
JavaScript
1
3
1
c1 + c2
2
2*c1
3