DS with Python - Average of Rows | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

DS with Python - Average of Rows

I cannot load the page for project Average of Rows. Page not found. Error 404. https://www.sololearn.com/learning/eom-project/1093/111

17th Jan 2021, 3:06 PM
Yew Choy
Yew Choy - avatar
2 Respostas
+ 1
Same experience here, You can solve it on app version instead. Anyway, there's nothing we can do but to mail them for this problem: E-mail: info@sololearn.com Or maybe someone here had the same bug in the past and had fixed it, then please share your story. Thanks!
17th Jan 2021, 3:33 PM
noteve
noteve - avatar
+ 1
Data Science - the perfect solution for average of rows n, p = [int(x) for x in input().split()] import numpy as np rm = [] for i in range(n): for a in input().split(): rm.append(float(a)) a = np.array(rm).reshape((n,p)) c = np.mean(a,axis=1) p = np.around(c,2) print(p)
1st Mar 2021, 2:41 AM
黄굷ē™»
黄굷ē™» - avatar