Advertisement
biswasrohit20

pro

Mar 27th, 2021
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. def productomatriz(M):
  2. import numpy as np
  3. M = np.array(M)
  4. product = 1
  5. product = product * np.product(M[0])
  6. product = product * np.product(M[-1])
  7. return product
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement