質問編集履歴

2

追加

2021/10/02 06:25

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -35,3 +35,29 @@
35
35
 
36
36
 
37
37
  の処理はどうなるのでしょうか?
38
+
39
+
40
+
41
+ 下のプログラムは上でわからない部分のある[参考にしたプログラム](https://github.com/gabrieleilertsen/hdrcnn/blob/master/img_io.py)の一部です。
42
+
43
+ ```python
44
+
45
+
46
+
47
+ class IOException(Exception):
48
+
49
+ #__int__(self):int()関数を使うときに呼び出されるメソッド
50
+
51
+ def __init__(self, value):
52
+
53
+ self.value = value
54
+
55
+ #__str__(self):str()関数,組み込み関数 format(), print() を使うときに呼び出されるメソッド
56
+
57
+ def __str__(self):
58
+
59
+ #repr()は引数付きのコンストラクタ(または初期化子)を文字列で返してくれる関数
60
+
61
+ return repr(self.value)
62
+
63
+ ```

1

codeに変更

2021/10/02 06:25

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -24,9 +24,13 @@
24
24
 
25
25
 
26
26
 
27
+ ```python
28
+
27
- > def __str__(self):
29
+ def __str__(self):
28
30
 
29
31
  return repr(self.value)
32
+
33
+ ```
30
34
 
31
35
 
32
36