Python クラスのコンストラクタ 1000Python 2024年06月29日 0 1. 文法__init__ メソッドが、コンストラクタになります。2.サンプル# -*- coding: utf-8 -*-# Class definitionclass Person: def __init__(self, name, age): self.name = name self.age = age# Object creationperson1 = Person("Alice", 30)person2 = Person("Bob", 25)# Display object informationprint(f"{person1.name} is {person1.age} years old.")print(f"{person2.name} is {person2.age} years old.")3.実行結果Alice is 30 years old.Bob is 25 years old.が表示されます。 PR