借助于sympy.sieve.mobiusrange()方法,我们可以生成给定范围[a,b)的莫比乌斯数。它返回一个类型生成器对象,可以将其转换为列表以进行进一步的操作。
用法: sieve.mobiusrange(a, b)
参数:
a - It denotes the start of the range. It is inclusive.
b - It denotes the end of the range. It is not inclusive.
返回: The method returns a type generator object.
范例1:
# import sympy
from sympy import sieve
# Use sieve.mobiusrange() method
mobius_gen = sieve.mobiusrange(1, 10)
mobius_list = list(mobius_gen)
print("Mobius numbers for the range of numbers [1, 10) : {}".format(mobius_list))
输出:
Mobius numbers for the range of numbers [1, 10) : [1, -1, -1, 0, -1, 1, -1, 0, 0]
范例2:
# import sympy
from sympy import sieve
# Use sieve.mobiusrange() method
mobius_gen = sieve.mobiusrange(8, 20)
mobius_list = list(mobius_gen)
print("Mobius numbers for the range of numbers [8, 20) : {}".format(mobius_list))
输出:
Mobius numbers for the range of numbers [8, 20) : [0, 0, 1, -1, 0, -1, 1, 1, 0, -1, 0, -1]
相关用法
- Python sympy.csc()用法及代码示例
- Python sympy.cot()用法及代码示例
- Python sympy.nP()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python sympy.cos()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python sympy.ones()用法及代码示例
- Python sympy.sin()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.S()用法及代码示例
- Python sympy.has()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python sympy | sieve.mobiusrange() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。