Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

, put together in one list. Written in code, it looks like this:

Code Block
languagepy
matrix = [[1, 2, 3], [4, 5, 6]]




Code Block
languagepy
titleCreating a matrix
a = np.array([[1,2],[3,4]])

...