-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Homework9: Aniskevich Valerij #136
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Нужно пофиксить первое задание
def __init__(self, reserded=False): | ||
self.name_book = "Motivation" | ||
self.author = "Brain Tracy" | ||
self.pages = 144 | ||
self.isbn = 9785000571002 | ||
self.reserved = reserded |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тебе нужно в методе init инициализировать новую книгу, все значения которой можно будет передать в констркутор класса.
Сейчас твой класс Book может содержать только одну книгу.
Переделеай все поля класса также, как ты сделал с параметром self.reserved, т.е передавай их в конструктор класса.
class User: | ||
def take(self, book): | ||
if book.reserved == False: | ||
name_user = input("Введите своё имя \n") | ||
self.name_user = name_user | ||
self.book = book | ||
book.reserved = True | ||
print(f"{self.name_user}, книга '{book.name_book}' взята успешно!") | ||
else: | ||
print("Извините, книга забронирована") | ||
|
||
def to_return(self, book): | ||
book.reserved = False | ||
print(f"Книга '{book.name_book}' возвращена! Спасибо!") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Добавь имя пользователя в параметр класса и инициализируй его в методе init().
Зачем каждый раз когда берем книгу спрашивать имя пользователя, ведь пользователей может быть несколько и имя у них меняться не будет
Исправил! |
No description provided.