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


Python numpy base_repr用法及代碼示例


本文簡要介紹 python 語言中 numpy.base_repr 的用法。

用法:

numpy.base_repr(number, base=2, padding=0)

返回給定基本係統中數字的字符串表示形式。

參數

number int

要轉換的值。處理正值和負值。

base 整數,可選

轉變number根據號碼係統。有效範圍為 2-36,默認值為 2。

padding 整數,可選

左側填充的零數。默認值為 0(無填充)。

返回

out str

的字符串表示number根據係統。

例子

>>> np.base_repr(5)
'101'
>>> np.base_repr(6, 5)
'11'
>>> np.base_repr(7, base=5, padding=3)
'00012'
>>> np.base_repr(10, base=16)
'A'
>>> np.base_repr(32, base=16)
'20'

相關用法


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