I have this list:
list1 = [['a', 'b', 'c', 'd']]
The way I found to convert to one list:
list1 = [['a', 'b', 'c', 'd']]
result = []
for i in range(len(list1)):
for j in range(len(list1[i])):
result.append(list1[i][j])
print result
and result is:
['a', 'b', 'c', 'd']
Is there any other way to do this ??