You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 29, 2023. It is now read-only.
the import Expression clearly figures out the variables such as in
from Equation import Expression
fn = Expression("var1 + var2/10")
Is there a method to list these var names. Such as fn.showVar will output ("var1","var2")
Also it will be much help if you could do something in the form of Expression.help to list out all usable methods and variables of Expression as a string
the import Expression clearly figures out the variables such as in
from Equation import Expression
fn = Expression("var1 + var2/10")
Is there a method to list these var names. Such as fn.showVar will output ("var1","var2")
Also it will be much help if you could do something in the form of Expression.help to list out all usable methods and variables of Expression as a string