Tagged Questions

6
votes
9answers
2k views

Python: Convert list of ints to one number?

I have a list of integers that I would like to convert to one number like: numList = [1,2,3] num = magic(numList) print num, type(num) >>> 123, <type 'int'> What is the best way to …