Skip to content

Instantly share code, notes, and snippets.

@Robofied
Created February 15, 2019 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Robofied/de0ff9723f91fb02226eb14a2c071601 to your computer and use it in GitHub Desktop.
Save Robofied/de0ff9723f91fb02226eb14a2c071601 to your computer and use it in GitHub Desktop.
Numpy
## Here order doesn't matter
a = np.arange(6).reshape(2,3)
for x in np.nditer(a, order='F'):
print (x,end=",")
#[Output]:
#0,3,1,4,2,5,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment