Initially I wrote the following code in Google Cloab -
import numpy
dir(numpy)
And ran the notebook it displayed a long list of strings like
['ALLOW_THREADS', 'AxisError', 'BUFSIZE', 'CLIP', 'ComplexWarning', 'DataSource', 'ERR_CALL', . .
Then I modified the code to
import numpy
dir(numpy)
speed = [99, 86, 87, 88, 111, 86, 103, 87, 77, 85, 86]
x = numpy.mean(speed)
print(x)
Now it just displayed the mean - `90.45454545454545`
I am not sure why it didnt display the output for dir(numpy) now?