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


Python sympy.trailing()用法及代碼示例


借助於sympy.trailing()方法,我們可以計算給定數字的二進製表示形式中尾隨零位數的數量,即確定將該數字除以2的最大冪。

用法:
trailing(n)

參數:
n – 它表示已確定將該數字除以2的最大冪的數字。


返回值:
返回除以給定數字的2的最大冪。

示例1:

# import trailing() method from sympy 
from sympy.ntheory.factor_ import trailing 
   
n = 64
   
# Use trailing() method  
trailing_n = trailing(n)  
       
print("The largest power of 2 that divides {} is 2^{}.". 
      format(n, trailing_n))

輸出:

The largest power of 2 that divides 64 is 2^6.

示例2:

# import trailing() method from sympy 
from sympy.ntheory.factor_ import trailing 
  
n = 130
  
# Use trailing() method  
trailing_n = trailing(n)  
      
print("The largest power of 2 that divides {} is 2^{}.". 
      format(n, trailing_n))

輸出:

The largest power of 2 that divides 130 is 2^1.


相關用法


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