Versions Compared

Key

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

...

The script above will result in the following output:

Code Block
languagepy
A = [[1, 2, 3], [4, 5, 6]]
A[1] = [4, 5, 6]
A[1][2] = 6
A[0][-1] = 3
3rd column = [3, 6]

...