Thursday, May 14, 2026
HomeLanguagesPython | sympy.count_ops() method

Python | sympy.count_ops() method

Using the count_ops() method in simpy module, we can count the number of operations used in the mathematical function. count_ops() method returns the number of operations used in the mathematical function.

Syntax : sympy.count_ops()

Return : the count of operations.

Code #1:

With the help of below examples, we can clearly understand that using sympy.count_ops() method we can count the number of operations in given expression.




# importing sympy library
from sympy import *
  
# taking symbols
x, y, z = symbols('x y z')
  
# calling count_ops() method on expression
geek = sqrt((x + 1)**2 + x).count_ops()
print(geek)


Output:

5

 
Code #2:




# importing sympy library
from sympy import *
  
# taking symbols
a, b = symbols('a b')
  
# calling count_ops() method on expression
geek = log(a) + log(b) + log(a)*log(1 / b)
print(count_ops(geek))


Output:

8

 

Code #3:




# importing sympy library
from sympy import *
  
# taking symbols
a, b = symbols('a b')
  
# calling count_ops() method on expression
geek = log(a * b**(1 - log(a)))
print(count_ops(geek))


Output:

5
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS