Skip to content

Instantly share code, notes, and snippets.

@ssanin82
Last active August 29, 2015 14:14
Show Gist options
  • Save ssanin82/c9d57eb206182c291c30 to your computer and use it in GitHub Desktop.
Save ssanin82/c9d57eb206182c291c30 to your computer and use it in GitHub Desktop.
def base_n(num, base, numerals="0123456789abcdefghijklmnopqrstuvwxyz"):
if not num:
return numerals[0]
res = ""
while num:
res = numerals[num % base] + res
num //= base
return res
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment