Simbol Sympy Python

>>> x = symbols('x')
>>> expr = x + 1
>>> x = 2
>>> print(expr)
x + 1
Xerothermic Xenomorph