top of page

Python Program to Concatenate Elements

In this post, we will learn about how to Concatenate all elements in a list into a string in python.


Implementation:

def concatenatelist(data):
    output=' '
    for e in data:
        output +=str(e)
    return output
print(concatenatelist([10,22,13,40,30,44,56,10]))
Output:
1022134030445610
 

Happy Coding!

Follow us on Instagram @programmersdoor

Join us on Telegram @programmersdoor


Please write comments if you find any bug in the above code/algorithm, or find other ways to solve the same problem.

Follow Programmers Door for more.

8 views0 comments

Recent Posts

See All
bottom of page