Skip to content

Instantly share code, notes, and snippets.

@mbalazard08
mbalazard08 / Tomerater.py
Last active May 27, 2019 20:17
TOME-RATER MARION
#premiere question : create a book
class User(object):
def __init__(self, name, email):
self.name = name
self.email = email
self.book = {}
def get_email(self):