Store named expression's current value in a python variable
Dear All,
I can get the value of a named expression using this command:
solver.setup.named_expressions.compute(names = ["my_expression"])
Information is reported in the console.
Is there a way to store the value in a python variable?
**
For example:
**Input:
expression_value = command_that_I'm_looking_for
print(expression_value)
print(expression_value + 2000)
**Output: **
25
2025
0