借助於sympy.digits()方法,我們可以在SymPy中的任何給定基數中找到給定整數的數字。
用法: digits(n, t=10)
參數:
n – 它表示一個整數。
b – 它表示一個基本整數(可選)。 b的默認值為10。
返回值:返回以b為基礎的n的數字列表。列表中的第一個元素是b(如果n為負,則為-b)。
示例1:
# import digits() method from sympy
from sympy.ntheory.factor_ import digits
n = 7524
b = 10
# Use digits() method
digits_n_b = digits(n, b)
print("Digits of {} in base {} = {} ".format(n, b, digits_n_b))
輸出:
Digits of 7524 in base 10 = [10, 7, 5, 2, 4]
示例2:
#從sympy導入digits()方法
來自sympy.ntheory.factor_導入數字
n = 33
b = 2
#使用digits()方法
digits_n_b =位數(n,b)
print(“以{}為基數的{}的數字= {}“ .format(n,b,digits_n_b))
輸出:
Digits of 33 in base 2 = [2, 1, 0, 0, 0, 0, 1]
相關用法
- Python set()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python os.ttyname()用法及代碼示例
- Python os.pread()用法及代碼示例
- Python os.fsencode()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python os.system()用法及代碼示例
- Python os.getloadavg()用法及代碼示例
- Python os.isatty()用法及代碼示例
- Python PIL tobytes()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python PIL putdata()用法及代碼示例
- Python os.get_inheritable()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.digits() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。