Python クラスの初期化メソッド 1000Python 2023年03月20日 0 1.文法__init__メソッドで、初期化されます。2.サンプル# -*- coding: utf-8 -*-class Test: def __init__(self): print('initです')# ---------------------------test = Test() 3.実行結果initですが表示されます PR