If I have three lists in python...
letters_1 = ['a','b','c']
letters_2 = ['d','e','f']
letters_3 = ['g','h','i']
How can I combine these to one list like:
['a','b','c','d','e','f','g','h','i']
by using python's built in methods?
Right now I'm using numpy to concatenate lists, but I'd rather use straight Python.
all_letters = np.concatenate((letters_1, letters_2, letters_3))