I have a large list of the following form:
mylist = {{a,b,c},{d,e,f},{g,h,i},{j,k,l}, ... }
I'd like to create a new list that takes the nth element from each sublist, and puts it in a new list. For example, if I want the first element from each sublist in "mylist" list put into a new list, my output would be:
mynewlist = {a,d,g,j, ... }
Can someone give me an idea of how to do this?
Thanks!