有没有一个快速的Python函数将数字转换成不同的基?

2024-04-20 10:49:26 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在写一个代码来检查一个数字有多少次是以2-10为基数的回文。有没有python函数可以将数字转换成不同的基?你知道吗

我已经尝试过手动创建函数,但是太慢了。你知道吗

baseChars="0123456789"
def toBase(n, b): 
    return "0" if not n else toBase(n//b, b).lstrip("0") + baseChars[n%b]

我希望toBase函数返回以2-10为基数的数字。我想避免NumPy


Tags: 函数代码numpyreturnifdefnot数字
3条回答

我认为在标准库中没有任何一个函数可以做到这一点。但是为我自己的一个类处理a different project,我必须解决这类问题,我的解决方案如下:

def _base(decimal, base):
    """
    Converts a number to the given base, returning a string.
    Taken from https://stackoverflow.com/a/26188870/2648811
    :param decimal: an integer
    :param base: The base to which to convert that integer
    :return: A string containing the base-base representation of the given number
    """
    li = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    other_base = ""
    while decimal != 0:
        other_base = li[decimal % base] + other_base
        decimal = decimal // base
    if other_base == "":
        other_base = "0"
    return other_base

def palindromes(num, bases=range(2, 11)):
    """
    Checks if the given number is a palindrome in every given base, in order. 
    Returns the sublist of bases for which the given number is a palindrome, 
    or an empty list if it is not a palindrome in any base checked.
    :param num: an integer to be converted to various bases
    :param bases: an iterable containing ints representing bases
    """
    return [i for i in bases if _base(num, i) == _base(num, i)[::-1]]

(最后一个语句的不那么简洁的版本(扩展for循环)如下所示:

r = []
for i in bases:
    b = _base(num, i)
    if b == b[::-1]:
        r.append(i)
return r

在您的例子中,如果您只需要整数在各种基中的表示列表,那么代码将更简单:

reps = {b: _base(num, b) for base in range(2, 11)}

将产生base : representation in that base的dict。例如,如果num = 23

{2: '10111',
 3: '212',
 4: '113',
 5: '43',
 6: '35',
 7: '32',
 8: '27',
 9: '25',
 10: '23'}

试试这个

def rebase( value, new_base ):
    res = ""
    while value > 0:
      res = str( value % new_base ) + res
      value = int( value / new_base )
    return res

这在NumPy到^{}中提供:

import numpy as np
[np.base_repr(100, base) for base in range(2,11)]

结果:

['1100100', '10201', '1210', '400', '244', '202', '144', '121', '100']

相关问题 更多 >