Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (anonymous):

Is there a way for me to access only certain elements in a 2D array, for example the vertical elements only or the first elements in a set of ordered pairs, in Python?

OpenStudy (anonymous):

2D arrays? you mean lists of lists, or python's array module, or do you mean numpy's arrays?

OpenStudy (anonymous):

lists of lists: A = [[1,0,0], [0,1,0], [0,0,1]] if you only want to get out the 'columns' then you can transpose it using list comprehensions.

OpenStudy (anonymous):

or you can simply loop: col2 = [] for row in A: col2.append(row[1]) # gets out the elements in the 2nd "column"

OpenStudy (anonymous):

list comprehensions: col2 = [row[1] for row in A]

OpenStudy (anonymous):

sets of ordered pairs? you mean Python's native set() ?

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!