Skip to content
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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

Valery1995
Copy link
Contributor

No description provided.

Copy link
Owner

@AlekseyQty AlekseyQty left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Нужно пофиксить первое задание

Comment on lines 9 to 14
def __init__(self, reserded=False):
self.name_book = "Motivation"
self.author = "Brain Tracy"
self.pages = 144
self.isbn = 9785000571002
self.reserved = reserded
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тебе нужно в методе init инициализировать новую книгу, все значения которой можно будет передать в констркутор класса.

Сейчас твой класс Book может содержать только одну книгу.

Переделеай все поля класса также, как ты сделал с параметром self.reserved, т.е передавай их в конструктор класса.

Comment on lines 17 to 30
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}' возвращена! Спасибо!")
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Добавь имя пользователя в параметр класса и инициализируй его в методе init().

Зачем каждый раз когда берем книгу спрашивать имя пользователя, ведь пользователей может быть несколько и имя у них меняться не будет

@Valery1995
Copy link
Contributor Author

Исправил!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants