Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python change base function

>>>import numpy as np
>>>np.base_repr(10, base=3)
'101'
Comment

change base python

def base_repr(number, base=2, padding=0):
    """
    Return a string representation of a number in the given base system.
    Parameters
    ----------
    number : int
        The value to convert. Positive and negative values are handled.
    base : int, optional
        Convert `number` to the `base` number system. The valid range is 2-36,
        the default value is 2.
    padding : int, optional
        Number of zeros padded on the left. Default is 0 (no padding).
    Returns
    -------
    out : str
        String representation of `number` in `base` system.
    See Also
    --------
    binary_repr : Faster version of `base_repr` for base 2.
    Examples
    --------
    >>> 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'
    """
    digits = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
    if base > len(digits):
        raise ValueError("Bases greater than 36 not handled in base_repr.")
    elif base < 2:
        raise ValueError("Bases less than 2 not handled in base_repr.")

    num = abs(number)
    res = []
    while num:
        res.append(digits[num % base])
        num //= base
    if padding:
        res.append('0' * padding)
    if number < 0:
        res.append('-')
    return ''.join(reversed(res or '0'))
Comment

PREVIOUS NEXT
Code Example
Python :: python temporary file 
Python :: default values python 
Python :: run python script automatically every day 
Python :: python get last item in a list 
Python :: module.__dict__ python 
Python :: username python system 
Python :: python delete dictionary key 
Python :: class indexing 
Python :: python call function x number of times 
Python :: dataframe number of unique rows 
Python :: python access modifiers 
Python :: print multiplication table python 
Python :: load png to python 
Python :: liste compréhension python 
Python :: python convert list to list of strings 
Python :: update all pip packages 
Python :: django login 
Python :: using Decorators 
Python :: python change function of object 
Python :: append 1 colimn in pandas df 
Python :: python tkinter button dynamic button command 
Python :: edit models in django admin 
Python :: dash log scale 
Python :: python dict access 
Python :: python how to extract a string from another string 
Python :: flask where to put db.create_all 
Python :: download latest chromedriver python code 
Python :: check audio playing on windows python 
Python :: make value of two tables unique django 
Python :: Python Split list into chunks using for loop 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =