The data:
list = ['a','b','x','d','s']
I want to create a string str = "abxds". How can I do that?
Right now I am doing something like:
str = ""
for i in list:
str = str + i
print(str)
I know strings are immutable in Python and this will create 7 string object. And this goes out of my memory when I do thousands of times.
Is there a more efficient way of doing this?
strobjects are immutable in Python, which is why it creates a newstrobject for each concatenation operation. – Chinmay Kanchi Nov 12 '10 at 16:19