Sololearn playground now supports Numpy | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 22

Sololearn playground now supports Numpy

try in your python console here : import numpy ! that opens a new era on sl ! https://code.sololearn.com/ct1EuXyiXRlA/?ref=app

21st Oct 2017, 4:58 AM
Abdur-Rahmaan Janhangeer
Abdur-Rahmaan Janhangeer - avatar
4 Answers
+ 10
Thanks Sololearn
21st Oct 2017, 4:24 PM
Ehtesham Ali
Ehtesham Ali - avatar
+ 9
There are so many methods that you have to: print( dir(numpy)[50:100] ) ... in groups to avoid timeout -- interested to see what people try! [edited out code / not important unless you're curious about speed]
21st Oct 2017, 5:38 AM
Kirk Schafer
Kirk Schafer - avatar
+ 5
What is numpy? That was my first thought when I saw this thread. I have found a link: http://www.numpy.org/
21st Oct 2017, 10:03 AM
Paul
Paul - avatar
+ 3
I am a freshman in university, and Numpy can help me with my advanced algebra assignment! import numpy as np a = np.array([[2,-3,4],[2,5,9],[1,3,5]]) print (np.linalg.det(a)) I can use it to check my answer. it is the value of a det()
21st Oct 2017, 11:26 AM
yinhao liang