In some code I am modifying I have found the following
data = # np.array with shape (200, 300, 64, 64, 3)
data = np.array([item for obs in data for item in obs])
where item
and obs
haven't been defined. I am having a hard time wrapping my head around the syntax of the double for-in line. How should I read this?