当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。