Difference between revisions of "Base Conversion"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (New page: =Examples= <pre> def baseconvert(n, base): """convert positive decimal integer n to equivalent in another base (2-36)""" digits = "0123456789abcdefghijklmnopqrstuvwxyz" try:...) |
PeterHarding (talk | contribs) |
||
| Line 1: | Line 1: | ||
=Examples= | =Examples= | ||
From http://code.activestate.com/recipes/65212/ | |||
<pre> | <pre> | ||
Revision as of 07:43, 14 April 2009
Examples
From http://code.activestate.com/recipes/65212/
def baseconvert(n, base):
"""convert positive decimal integer n to equivalent in another base (2-36)"""
digits = "0123456789abcdefghijklmnopqrstuvwxyz"
try:
n = int(n)
base = int(base)
except:
return ""
if n < 0 or base < 2 or base > 36:
return ""
s = ""
while 1:
r = n % base
s = digits[r] + s
n = n / base
if n == 0:
break
return s