Day 84クラス変数とインスタンス変数の違い

2026-05-19 JST ・ 難易度: 中級 ・ カテゴリ: クラス

Pythonコード

1class Person:2    country = 'Japan'3    def __init__(self, name, age):4        self.name = name5        self.age = age6    def greet(self):7        print(f'{self.name}({self.age})からこんにちは!')8p = Person('山田', 25)9print(p.country)10p.country = 'USA'11print(p.country)12print(Person.country)13q = Person('田中', 30)14print(q.country)

解説

次に試してみよう