使用count()
simpy模块中的方法,我们可以计算数学函数中使用的变量数。count()
方法返回数学函数中使用的变量数。
Syntax:sympy.count(x) Return:the count of variables.
代码1:
借助以下示例,我们可以清楚地了解使用sympy.count()
方法,我们可以计算给定表达式中变量的数量。
# importing sympy library
from sympy import *
# taking symbols
x, y, z = symbols('x y z')
# calling count() method on expression
geek = sqrt((x + 1)**2 + x).count(x)
print(geek)
输出:
2
代码2:
# importing sympy library
from sympy import *
# taking symbols
a, b = symbols('a b')
# calling count() method on expression
geek = (log(a) + log(b) + log(a)*log(1 / b)).count(b)
print(geek)
输出:
2
代码3:
# importing sympy library
from sympy import *
# taking symbols
a, b = symbols('a b')
# calling count() method on expression
geek = (log(a * b**(1 - log(a)))).count(b)
print(geek)
输出:
1
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.get_blocking()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.getcwd()用法及代码示例
- Python os.access()用法及代码示例
- Python dict pop()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.nP()用法及代码示例
注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | sympy.count() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。