This is documentation for an old release of NumPy (version 1.3.). Read this page in the documentation of the latest stable release (version > 1.17).
Return a string representation of a number in the given base system.
Parameters: | number : scalar
base : int
padding : int, optional
|
---|---|
Returns: | out : str
|
See also
Examples
>>> np.base_repr(3, 5)
'3'
>>> np.base_repr(6, 5)
'11'
>>> np.base_repr(7, 5, padding=3)
'00012'