From 06db5c5759fdcf09cd8ca339c322555ebe5fff49 Mon Sep 17 00:00:00 2001 From: wizardforcel <562826179@qq.com> Date: Sat, 25 Jul 2020 13:59:09 +0800 Subject: [PATCH] 2020-07-25 13:59:09 --- docs/numpy-essentials/0.md | 4 ++-- docs/numpy-essentials/1.md | 2 +- docs/numpy-essentials/9.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/numpy-essentials/0.md b/docs/numpy-essentials/0.md index 444a3cae..3a1b1173 100644 --- a/docs/numpy-essentials/0.md +++ b/docs/numpy-essentials/0.md @@ -58,14 +58,14 @@ In [42]: print("Hello, World!") 任何命令行输入或输出的编写方式如下: ```py -**In [6]: x +In [6]: x Out[6]: array([[1, 2, 3],        [2, 3, 4]]) In [7]: x[0,0] Out[7]: 1 In [8]: x[1,2] -Out[8]: 4** +Out[8]: 4 ``` diff --git a/docs/numpy-essentials/1.md b/docs/numpy-essentials/1.md index f1bb71bc..12946611 100644 --- a/docs/numpy-essentials/1.md +++ b/docs/numpy-essentials/1.md @@ -122,7 +122,7 @@ Windows OS 用户注意事项:除了 Python 发行版,您还可以从 [Ghris $ pip install numpy $ easy_install numpy $ enpkg numpy # for Canopy users -$ conda install numpy # for Anaconda users** +$ conda install numpy # for Anaconda users ``` diff --git a/docs/numpy-essentials/9.md b/docs/numpy-essentials/9.md index 2e79ddbc..2f91da99 100644 --- a/docs/numpy-essentials/9.md +++ b/docs/numpy-essentials/9.md @@ -222,7 +222,7 @@ return NULL; ```c /* iterate over the arrays */ do { -**out_dataptr =pow(**in_dataptr,2); + out_dataptr =pow(**in_dataptr,2); } while(in_iternext(in_iter) && out_iternext(out_iter)); /* clean up and return the result */ -- GitLab