© 2025 株式会社Blowfish
■animal.py [python] class Animal: def __init__(self, name): self.name = name[…]
正しい書き方かどうかまだ勉強中ですが、とりあえず、下記にて動作しました。 [python] def hello(self): print(‘こんにちは。%s さん’ % (self.name)) […]