回答編集履歴

1

append link

2022/10/29 09:15

投稿

ps_aux_grep
ps_aux_grep

スコア1581

test CHANGED
@@ -1,4 +1,7 @@
1
1
  コンストラクタ`__init__()`の第一引数に渡している`self`を利用して次のように書く必要があります.
2
+
3
+ [Python3 Documentation Class Objects](https://docs.python.org/ja/3/tutorial/classes.html#class-objects)
4
+
2
5
  ```Python
3
6
  class MainCls:
4
7
  def __init__(self):
@@ -13,3 +16,4 @@
13
16
  main = MainCls()
14
17
  main.main()
15
18
  ```
19
+ コンストラクタは明示せずとも良いですが念の為.