Want to create a matrix like below in python
[[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 16]]
but not sure how to do, i tried list comprehension like below
[[y+x for y in range(4)] for x in range(4)]
which gives output like below
[[0, 1, 2, 3], [1, 2, 3, 4], [2, 3, 4, 5], [3, 4, 5, 6]]
and also want print the row with maximum sum and columns with maximum sum.
Thanks in advance