借助于sympy.compositepi()方法,我们可以找到小于或等于给定数字的复合数字。
用法: compositepi(n)
参数:
n – 它表示要计算的合成数量计数的数量。
返回值:返回小于或等于n的复合数字的数量。
示例1:
# import compositepi() method from sympy
from sympy import compositepi
n = 10
# Use compositepi() method
count_composites = compositepi(n)
print("The number of composites numbers less than or equal to {} is {}".format(n, count_composites))
输出:
The number of composites numbers less than or equal to 10 is 5
示例2:
# import compositepi() method from sympy
from sympy import compositepi
n = 100
# Use compositepi() method
count_composites = compositepi(n)
print("The number of composites numbers less than or equal to {} is {}".format(n, count_composites))
输出:
The number of composites numbers less than or equal to 100 is 74
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os.fchmod()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python PIL putpixel()用法及代码示例
- Python os.sysconf()用法及代码示例
- Python os.confstr()用法及代码示例
- Python os._exit()用法及代码示例
- Python cmath.log()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python sympy.rf()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.compositepi() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。