python 属性へのアクセス

class Post:
def init(self, text):
self.text = text
self._likes = 0

def show(self):
    print(f"{self.text} - {self._likes}")

def like(self):
    self._likes += 1

posts = [
Post(“Hello”),
Post(“Hi”),
]

posts[0]._likes += 1

posts[0].like()

for post in posts:
post.show()

投稿者: chosuke

趣味はゲームやアニメや漫画などです

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です