We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Numpy
- Sum and Prod
- Discussions
Sum and Prod
Sum and Prod
Sort by
recency
|
359 Discussions
|
Please Login in order to post a comment
import numpy as np
n, m = map(int,input().split()) a=[] for i in range(n): row = list(map(int,input().split())) a.append(row) print(np.prod(np.sum(a,axis = 0)))
For Python3
easy two liner: