sasoptpy.Expression.__str__

Expression.__str__(self)[source]

Generates a representation string that is Python-compatible

Examples

>>> f = x + y ** 2
>>> print(str(f))
x + (y) ** (2)