class book:
    def __init__(self, title,author):
        self.title = title
        self.author = author
    def info(self):
        print(f"도서명: {self.title} 저자: {self.author}")

mybook = book("top gun","tom")
mybook.info()
            

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: