show/hide this revision's text 2 added 353 characters in body

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 implement the magic function?

Thanks for your help.

EDIT
I did find this, but it seems like there has to be a better way.

EDIT 2
Let's give some credit to Triptych and cdleary for their great answers! Thanks guys.

show/hide this revision's text 1

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 implement the magic function?

Thanks for your help.

EDIT
I did find this, but it seems like there has to be a better way.