Welcome, guest | Sign In | My Account | Store | Cart
I have got 20-25+ lists in python and I want to check all the items within the list and put single items into a new list.
['a','b', 'c', 'd', 'e']
['a', 'e', 'c', 'x']
['f', 'g', 'k', 'y']
['a', 'z', 't']**strong text**
.
.
.
.
.
.
.
.
#single elements from number of list into one
new = ['a', 'b','c', 'd', 'e', 'f', 'g'........]

 

History