class Book:
def __init__(self, title,author):
self.title = title
self.author = author
def info(self):
print(self.title,self.author)
mybook = Book("python","class")
mybook.info()
To embed this project on your website, copy the following code and paste it into your website's HTML: