借助于sympy.sieve.totientrange()方法,我们可以生成给定范围[a,b)的所有上位数字。它返回一个类型生成器对象,可以将其转换为列表以进行进一步的操作。
用法: sieve.totientrange(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.totientrange() method
totient_gen = sieve.totientrange(1, 10)
totient_list = list(totient_gen)
print("Totient numbers for the range of numbers [1, 10) : {}".format(totient_list))
输出:
Totient numbers for the range of numbers [1, 10) : [1, 1, 2, 2, 4, 2, 6, 4, 6]
范例2:
# import sympy
from sympy import sieve
# Use sieve.totientrange() method
totient_gen = sieve.totientrange(8, 20)
totient_list = list(totient_gen)
print("Totient numbers for the range of numbers [8, 20) : {}".format(totient_list))
输出:
Totient numbers for the range of numbers [8, 20) : [4, 6, 4, 10, 4, 12, 6, 8, 8, 16, 6, 18]
相关用法
- 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.totientrange() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。