Example & Tutorial understanding programming in easy ways.

How we can take all item in list and make the string in Python ?

We use join() method to do this 


program:

l=["My","String","123"]

s="".join(l)

print(s)


//MyString123

Read More →