Skip to content

Instantly share code, notes, and snippets.

View zakgrin's full-sized avatar
🎯
Focusing

Zakariya Abugrin zakgrin

🎯
Focusing
View GitHub Profile
class Authors:
def __init__(self, author1, author2):
self.author1=author1
self.author2=author2
def __str__(self):
return self.author1 + ' and ' + self.author2
class Book: