+ 3

How is?

What functions does nunmpy have?

5th Dec 2024, 1:14 PM
Marcos
Marcos - avatar
2 Réponses
+ 8
Here's how to find it out: – Do a quick Google search – Read the documentation Try these first. If you need help with your code or have more concrete questions, you can edit your post.
5th Dec 2024, 1:15 PM
Lisa
Lisa - avatar
+ 2
#Try this from inspect import getmembers import numpy as np #This prints a very long text that cannot be properly displayed in Sololearn codebit #print(*(f'#### {x[0]} ####\n\n{x[1].__doc__}\n\n---------\n' for x in getmembers(np)), sep='\n') #This is shorter print(*(x[0] for x in getmembers(np)), sep='\n')
6th Dec 2024, 12:55 AM
Bob_Li
Bob_Li - avatar