回答編集履歴
2
ちょっとだけ追記
test
CHANGED
@@ -8,12 +8,12 @@
|
|
8
8
|
```
|
9
9
|
import matplotlib.pyplot
|
10
10
|
```
|
11
|
-
だと matplotlib
|
11
|
+
だと matplotlib という変数に matplotlib のモジュールオブジェクトが代入される
|
12
12
|
|
13
13
|
```
|
14
14
|
from matplotlib import pyplot
|
15
15
|
```
|
16
|
-
だと pyplot
|
16
|
+
だと pyplot という変数に matplotlib.pyplot のモジュールオブジェクトが代入される
|
17
17
|
|
18
18
|
という**機能上の違い**があります。
|
19
19
|
|
1
修飾だけ
test
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
```
|
16
16
|
だと pyplot が変数になる
|
17
17
|
|
18
|
-
という機能上の違いがあります。
|
18
|
+
という**機能上の違い**があります。
|
19
19
|
|
20
20
|
----
|
21
21
|
|