Создайте калькулятор base 12 с разными лимитами на разные цифры с помощью python - PullRequest
0 голосов
/ 21 ноября 2018

Я хочу создать калькулятор, который может добавлять (и умножать, делить и т. Д.) Числа в базе 12 и с различными ограничениями на разные цифры.

Последовательность базы 12: [0,1,2,3,4,5,6,7,8,9,"A","B"]

Пределы должны быть:

Первая цифра: лимит "B" Вторая цифра: лимит 4 Третья цифра: лимит "B"

(Идея заключается в том, что она следует за почасовымСистемные ограничения, но в базе 12, так, например, в базе 12 есть 50 секунд в минуту)

Это означает, что вы рассчитываете так: [1,2,3,4,5,6,7,8,9,A,B,10,11,...48,49,4A,4B,100,101,...14B,200,201,...B4B,1000,1001..]

Итак, я сделал следующий код

 import string
digs = string.digits + string.ascii_uppercase


def converter(number):
    #split number in figures
    figures = [int(i,12) for i in str(number)]
    #invert oder of figures (lowest count first)
    figures = figures[::-1]
    result = 0
    #loop over all figures
    for i in range(len(figures)):
        #add the contirbution of the i-th figure
        result += figures[i]*12**i
    return result

def int2base(x):
    if x < 0:
        sign = -1
    elif x == 0:
        return digs[0]
    else:sign = 1

    x *= sign
    digits = []

    while x:
        digits.append(digs[int(x % 12)])
        x = int(x / 12)

    if sign < 0:
        digits.append('-')

    digits.reverse()

    return ''.join(digits)

def calculator (entry1, operation, entry2):
    value1=float(converter(entry1))
    value2=float(converter(entry2))
    if operation == "suma" or "+":
        resultvalue=value1+value2
    else:
        print("operación no encontrada, porfavor ingrese +,-,")
    result=int2base(resultvalue)
    return result


print(calculator(input("Ingrese primer valor"), input("ingrese operación"), input("Ingrese segundo valor")))

Дело в том, что я не знаю, как установить границы для различных цифр. Если кто-то может мне помочь, я был бы очень рад

1 Ответ

0 голосов
/ 14 декабря 2018

Вы можете определить два преобразователя:

class Base12Convert:
    d = {hex(te)[2:].upper():te for te in range(0,12)}
    d.update({val:key for key,val in d.items()})
    d["-"] = "-"

    @staticmethod
    def text_to_int(text):
        """Converts a base-12 text into an int."""
        if not isinstance(text,str):
            raise ValueError(
                f"Only strings allowed: '{text}' of type '{type(text)}' is invalid")
        t = text.strip().upper()
        if any (x not in Base12Convert.d for x in t):
            raise ValueError(
                f"Only [-0123456789abAB] allowed in string: '{t}' is invalid")            
        if "-" in t.lstrip("-"):
            raise ValueError(f"Sign '-' only allowed in front. '{t}' is invalid")
        # easy way
        return int(t,12)

        # self-calculated way
        # return sum(Base12Convert.d[num]*12**idx for idx,num in enumerate(t[::-1]))

    @staticmethod
    def int_to_text(num):
        """Converts an int into a base-12 string."""

        sign = ""
        if not isinstance(num,int):
            raise ValueError(
                f"Only integer as input allowed: '{num} of type {type(num)}' is invalid")
        if num < 0:
            sign = "-"
            num *= -1

        # get highest possible number
        p = 1
        while p < num:
            p *= 12

        # create string 
        rv = [sign]
        while True:
            p /= 12
            div = num // p
            num -= div*p
            rv.append(Base12Convert.d[div])
            if p == 1:
                break

        return ''.join(rv)

Затем вы можете использовать их для преобразования того, что вы хотите:

text = "14:54:31"  # some time 

# convert each int of the time into base12 - join with | again
base12 = '|'.join(Base12Convert.int_to_text (int(t)) for t in text.split(":"))

# split base12 at |, convert to int, make str from int and join with | again
base10 = '|'.join(map(str,(Base12Convert.text_to_int (b12) for b12 in base12.split("|"))))

# print all 3
print(text,base12,base10,sep="\n")

Вывод:

14:54:31
12|46|27
14|54|31

иприменяйте любые ограничения на ваши «цифры», используя обычные целые числа.Вы должны разделить ваши «цифры» часов ... 14b (203 в базе 10) не имеет смысла, 1:4b может, если вы имеете в виду 1:59 часов / минут.

...