+ 3
How is?
What functions does nunmpy have?
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.
+ 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')