當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Sympy sieve.mobiusrange()用法及代碼示例


借助於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]


相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python sympy | sieve.mobiusrange() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。