Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created January 6, 2024 12:08
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 stephengruppetta/01b0f403dfd0a0a3b4b846345e40b22c to your computer and use it in GitHub Desktop.
Save stephengruppetta/01b0f403dfd0a0a3b4b846345e40b22c to your computer and use it in GitHub Desktop.
# Convert a list of lists into a 2D NumPy array
grid = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
grid
# array([[1, 2, 3],
# [4, 5, 6],
# [7, 8, 9]])
# Confirm the number of dimensions
grid.ndim
# 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment