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

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

コメントを残す

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