Skip to content

Instantly share code, notes, and snippets.

# # Task 1
# import datetime
#
#
# class Book:
# def __init__(self, title, author, year):
# self.__title = title
# self.__author = author
# self.__year = year
#