122k views
3 votes
You defined a book data type.

class book:
title = ''
author = ''
pages = 0

Then, you created an instance of your book.

myBook = book()

Which statement assigns a value to the title?

title = 'To Kill a Mockingbird'
myBook.title('To Kill a Mockingbird')
myBook.title = 'To Kill a Mockingbird'
myBook.book.title = myBook.title = 'To Kill a Mockingbird'

1 Answer

3 votes

Answer:

myBook.title = 'To Kill a Mockingbird'

Step-by-step explanation:

Correct answer edge 2020

User IsHristov
by
5.5k points