show/hide this revision's text 5 added 31 characters in body
# 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(str, numList'.join(map(str, numList))
    return int(s)


# As a one-liner  
num = int(''.join(map(str,numList)))


# Functionally:
num s = reduce(lambda x,y: x+str(y), lnumList, '')
num = int(s)


# Cleverly, using Using some oft-forgotten built-ins:
num s = filter(str.isdigit, repr(numList))
num = int(s)
show/hide this revision's text 4 deleted 126 characters in body
# 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(str, numList)
    return int(s)


# As a one-liner  
num = int(''.join(map(str,numList)))


# Functionally:
num = reduce(lambda x,y: x+str(y), l, '')


# Cleverly, using some built-ins:
num = filter(str.isdigit, repr(numList))
show/hide this revision's text 3 added 243 characters in body

# Explicitly

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(str, numList)
    return int(s)

As a one-liner

num = int(''.join(map(str,numList)))

Functionally:

num = reduce(lambda x,y: x+str(y), l, '')

Cleverly, using some built-ins:

num = filter(str.isdigit, repr(numList))
show/hide this revision's text 2 made it more obviouser.
show/hide this revision's text 1