Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDV Shop
1,482 PointsHow to Add a __eq__ method and how to check the Title & Author are the same and return True or False.
I have tried many times for Adđ a eq method and Check the Title & Author are same for returning True or False value. But the Bummer SyntaxError: invalid syntax. Please fix my code or correct for this issue.
My code is attached in this below. Please help me. Many thanks.
class Book:
def __init__(self, author, title):
self.author = author
self.title = title
def __str__(self):
return f"{self.author}, {self.title}"
def __eq__(self, other):
if isinstance(other, Book):
return self.author == other.author and
self.title == other.title
return False
from book import Book
class BookCase:
def __init__(self):
self.books = []
def add_books(self, book):
self.books.append(book)
1 Answer
Travis Alstrand
Treehouse Project ReviewerHey DV Shop !
Your code is valid, it just has a syntax error. If you inspect the error message on the right, you'll see it's pointing to the end of your return conditional line. Having a break like this will cause an error. So you just need to put them back to the same line like so...
class Book:
def __init__(self, author, title):
self.author = author
self.title = title
def __str__(self):
return f"{self.author}, {self.title}"
def __eq__(self, other):
if isinstance(other, Book):
return self.author == other.author and self.title == other.title
return False