Python: Convert list of ints to one number? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:19:10Zhttp://stackoverflow.com/feeds/question/489999http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number6Python: Convert list of ints to one number?Casey2009-01-29T00:16:23Z2009-10-08T06:56:09Z
<p>I have a list of integers that I would like to convert to one number like:</p>
<pre><code>numList = [1,2,3]
num = magic(numList)
print num, type(num)
>>> 123, <type 'int'>
</code></pre>
<p>What is the best way to implement the <i>magic</i> function?</p>
<p>Thanks for your help.</p>
<p><b>EDIT</b> <br>
I did find <a href="http://bytes.com/groups/python/722951-int-str-list-elements" rel="nofollow">this</a>, but it seems like there has to be a better way.</p>
<p><b>EDIT 2</b> <br>
Let's give some credit to <a href="http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number#490020">Triptych</a> and <a href="http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number#490031">cdleary</a> for their great answers! Thanks guys.</p>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490020#49002025Answer by Triptych for Python: Convert list of ints to one number?Triptych2009-01-29T00:21:26Z2009-01-29T00:50:55Z<pre><code># Over-explaining a bit:
def magic(numList): # [1,2,3]
s = map(str, numList) # ['1','2','3']
s = ''.join(s) # '123'
s = int(s) # 123
return s
# How I'd probably write it:
def magic(numList):
s = ''.join(map(str, numList))
return int(s)
# As a one-liner
num = int(''.join(map(str,numList)))
# Functionally:
s = reduce(lambda x,y: x+str(y), numList, '')
num = int(s)
# Using some oft-forgotten built-ins:
s = filter(str.isdigit, repr(numList))
num = int(s)
</code></pre>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490024#4900242Answer by Andrew Medico for Python: Convert list of ints to one number?Andrew Medico2009-01-29T00:22:17Z2009-01-29T00:22:17Z<p>pseudo-code:</p>
<pre>int magic(list nums)
{
int tot = 0
while (!nums.isEmpty())
{
int digit = nums.takeFirst()
tot *= 10
tot += digit
}
return tot
}</pre>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490029#4900293Answer by TokenMacGuy for Python: Convert list of ints to one number?TokenMacGuy2009-01-29T00:23:31Z2009-01-29T00:23:31Z<pre><code>def magic(numbers):
return int(''.join([ "%d"%x for x in numbers]))
</code></pre>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490031#49003113Answer by cdleary for Python: Convert list of ints to one number?cdleary2009-01-29T00:23:42Z2009-01-29T05:10:09Z<p>Two solutions:</p>
<pre><code>>>> nums = [1, 2, 3]
>>> magic = lambda nums: int(''.join(str(i) for i in nums)) # Generator exp.
>>> magic(nums)
123
>>> magic = lambda nums: sum(digit * 10 ** (len(nums) - 1 - i) # Summation
... for i, digit in enumerate(nums))
>>> magic(nums)
123
</code></pre>
<p>The <code>map</code>-oriented solution actually comes out ahead on my box -- you definitely should not use <code>sum</code> for things that might be large numbers:</p>
<p><img src="http://lh3.ggpht.com/_t58Xs7CN35o/SYETlAnN6NI/AAAAAAAABSg/KJetpOdJcKw/s400/image.png" alt="Timeit Comparison" /></p>
<pre><code>import collections
import random
import timeit
import matplotlib.pyplot as pyplot
MICROSECONDS_PER_SECOND = 1E6
FUNS = []
def test_fun(fun):
FUNS.append(fun)
return fun
@test_fun
def with_map(nums):
return int(''.join(map(str, nums)))
@test_fun
def with_interpolation(nums):
return int(''.join('%d' % num for num in nums))
@test_fun
def with_genexp(nums):
return int(''.join(str(num) for num in nums))
@test_fun
def with_sum(nums):
return sum(digit * 10 ** (len(nums) - 1 - i)
for i, digit in enumerate(nums))
@test_fun
def with_reduce(nums):
return int(reduce(lambda x, y: x + str(y), nums, ''))
@test_fun
def with_builtins(nums):
return int(filter(str.isdigit, repr(nums)))
@test_fun
def with_accumulator(nums):
tot = 0
for num in nums:
tot *= 10
tot += num
return tot
def time_test(digit_count, test_count=10000):
"""
:return: Map from func name to (normalized) microseconds per pass.
"""
print 'Digit count:', digit_count
nums = [random.randrange(1, 10) for i in xrange(digit_count)]
stmt = 'to_int(%r)' % nums
result_by_method = {}
for fun in FUNS:
setup = 'from %s import %s as to_int' % (__name__, fun.func_name)
t = timeit.Timer(stmt, setup)
per_pass = t.timeit(number=test_count) / test_count
per_pass *= MICROSECONDS_PER_SECOND
print '%20s: %.2f usec/pass' % (fun.func_name, per_pass)
result_by_method[fun.func_name] = per_pass
return result_by_method
if __name__ == '__main__':
pass_times_by_method = collections.defaultdict(list)
assert_results = [fun([1, 2, 3]) for fun in FUNS]
assert all(result == 123 for result in assert_results)
digit_counts = range(1, 100, 2)
for digit_count in digit_counts:
for method, result in time_test(digit_count).iteritems():
pass_times_by_method[method].append(result)
for method, pass_times in pass_times_by_method.iteritems():
pyplot.plot(digit_counts, pass_times, label=method)
pyplot.legend(loc='upper left')
pyplot.xlabel('Number of Digits')
pyplot.ylabel('Microseconds')
pyplot.show()
</code></pre>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490250#4902502Answer by Rex Logan for Python: Convert list of ints to one number?Rex Logan2009-01-29T02:04:01Z2009-10-08T06:56:09Z<pre><code>def magic(number):
return int(''.join(str(i) for i in number))
</code></pre>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490312#4903122Answer by S.Lott for Python: Convert list of ints to one number?S.Lott2009-01-29T02:34:59Z2009-01-29T02:34:59Z<p>This seems pretty clean, to me.</p>
<pre><code>def magic( aList, base=10 ):
n= 0
for d in aList:
n = base*n + d
return n
</code></pre>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490392#4903921Answer by recursive for Python: Convert list of ints to one number?recursive2009-01-29T03:31:57Z2009-01-29T03:31:57Z<p>This method works in 2.x as long as each element in the list is only a single digit. But you shouldn't actually use this. It's horrible.</p>
<pre><code>>>> magic = lambda l:int(`l`[1::3])
>>> magic([3,1,3,3,7])
31337
</code></pre>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490400#4904002Answer by Ryan for Python: Convert list of ints to one number?Ryan2009-01-29T03:37:16Z2009-01-29T03:37:16Z<p>Using a generator expression:</p>
<pre><code>def magic(numbers):
digits = ''.join(str(n) for n in numbers)
return int(digits)
</code></pre>
http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/493944#4939441Answer by J.F. Sebastian for Python: Convert list of ints to one number?J.F. Sebastian2009-01-29T23:26:56Z2009-01-30T02:07:40Z<p>Just for completeness, here's a variant that uses <code>print()</code> (works on Python 2.6-3.x):</p>
<pre><code>from __future__ import print_function
try: from cStringIO import StringIO
except ImportError:
from io import StringIO
def to_int(nums, _s = StringIO()):
print(*nums, sep='', end='', file=_s)
s = _s.getvalue()
_s.truncate(0)
return int(s)
</code></pre>
<p><hr /></p>
<p>I've measured performance of <a href="http://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number#490031">@cdleary's functions</a>. The results are slightly different. </p>
<p>Each function tested with the input list generated by:</p>
<pre><code>def randrange1_10(digit_count): # same as @cdleary
return [random.randrange(1, 10) for i in xrange(digit_count)]
</code></pre>
<p>You may supply your own function via <code>--sequence-creator=yourmodule.yourfunction</code> command-line argument (see below).</p>
<p>The fastest functions for a given number of integers in a list (<code>len(nums) == digit_count</code>) are:</p>
<ul>
<li><p><code>len(nums)</code> in <strong>1..30</strong> </p>
<pre><code>def _accumulator(nums):
tot = 0
for num in nums:
tot *= 10
tot += num
return tot
</code></pre></li>
<li><p><code>len(nums)</code> in <strong>30..1000</strong> </p>
<pre><code>def _map(nums):
return int(''.join(map(str, nums)))
def _imap(nums):
return int(''.join(imap(str, nums)))
</code></pre></li>
</ul>
<p><img src="http://i403.photobucket.com/albums/pp111/uber_ulrich/ints2int/_010randrange1_10.png" alt="Figure: N = 1000" /></p>
<pre><code>|------------------------------+-------------------|
| Fitting polynom | Function |
|------------------------------+-------------------|
| 1.00 log2(N) + 1.25e-015 | N |
| 2.00 log2(N) + 5.31e-018 | N*N |
| 1.19 log2(N) + 1.116 | N*log2(N) |
| 1.37 log2(N) + 2.232 | N*log2(N)*log2(N) |
|------------------------------+-------------------|
| 1.21 log2(N) + 0.063 | _interpolation |
| 1.24 log2(N) - 0.610 | _genexp |
| 1.25 log2(N) - 0.968 | _imap |
| 1.30 log2(N) - 1.917 | _map |
</code></pre>
<p><img src="http://i403.photobucket.com/albums/pp111/uber_ulrich/ints2int/_020randrange1_10.png" alt="Figure: N = 1000_000" /></p>
<p>To plot the first figure download <a href="http://gist.github.com/51074" rel="nofollow"><code>cdleary.py</code> and <code>make-figures.py</code></a> and run (<code>numpy</code> and <code>matplotlib</code> must be installed to plot):</p>
<pre><code>$ python cdleary.py
</code></pre>
<p>Or </p>
<pre><code>$ python make-figures.py --sort-function=cdleary._map \
> --sort-function=cdleary._imap \
> --sort-function=cdleary._interpolation \
> --sort-function=cdleary._genexp --sort-function=cdleary._sum \
> --sort-function=cdleary._reduce --sort-function=cdleary._builtins \
> --sort-function=cdleary._accumulator \
> --sequence-creator=cdleary.randrange1_10 --maxn=1000
</code></pre>