из произвольной базы
def decode(s, base, chars):
n = 0
for c in s:
n = n*base + chars.index(c)
return n
int(s, base=base)
Обсуждают сегодня