回答編集履歴
2
参照を追加
test
CHANGED
@@ -15,3 +15,7 @@
|
|
15
15
|
ValueError: math domain error
|
16
16
|
|
17
17
|
```
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
わからなければ、[対数関数のグラフについて](http://www2.edu-ctr.pref.okayama.jp/math/204/20412.html) を見てください。
|
1
例を追加
test
CHANGED
@@ -1 +1,17 @@
|
|
1
1
|
ゼロの対数はマイナス無限大なので、エラーが起こって当然です。
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
以下を見てください。
|
6
|
+
|
7
|
+
```python
|
8
|
+
|
9
|
+
>>> math.log(0)
|
10
|
+
|
11
|
+
Traceback (most recent call last):
|
12
|
+
|
13
|
+
File "<stdin>", line 1, in <module>
|
14
|
+
|
15
|
+
ValueError: math domain error
|
16
|
+
|
17
|
+
```
|