May 4, 2025
l.append(4)
help(l)
class Child(object): def say_hello(self): print("Yeah!")
self
child = Child() child.say_hello() # "Yeah!"と出力
l = list()
class クラス名(object)
Full transcript