From 491602cf7da60e57d0a23f6cf21a72abc541b767 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Mon, 31 May 2021 09:16:27 -0600 Subject: [PATCH] 5 added hint about colab and cocalc python running --- source/exercises100.ktx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/exercises100.ktx b/source/exercises100.ktx index 5d2aea96..b792e733 100644 --- a/source/exercises100.ktx +++ b/source/exercises100.ktx @@ -38,10 +38,11 @@ Z = np.zeros((10,10)) print("%d bytes" % (Z.size * Z.itemsize)) < q5 -How to get the documentation of the numpy add function from the command line? (★☆☆) +How to get the documentation of the numpy add function from the command line? (★☆☆) < h5 hint: np.info +hint: In Google colab, and Cocalc, you will need to use !python instead of %run `python...` < a5 %run `python -c "import numpy; numpy.info(numpy.add)"`