hello everbody,

can someone please help me,
how do i turn a list like a=[0,1,2,3,4] into
01234
i tried

for i in range (len(a))
print a,

but thats give me 0 1 2 3 4

thanks,

fabio

Convert the integers to strings with a list comprehension and use string method join() to combine:

>>> a=[0,1,2,3,4]
>>> print ''.join([str(i) for i in a])
01234
>>>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.