Thursday, November 13, 2025
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
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11916 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6837 POSTS0 COMMENTS
Umr Jansen
6839 POSTS0 COMMENTS