![]() |
VOOZH | about |
Using the find() method in sympy module, we can find the mathematical function's subexpression (if it exists). find() method returns the subexpression in the mathematical function.
Syntax : sympy.find(x) Return : returns subexpression
Code #1: With the help of the below examples, we can clearly understand that using sympy.find() method we can count the subexpression from the given expression.
Output:
{log(3*x)}
Code #2:
Output:
{log(a), log(1/b), log(b)}