Answer to Question #265405 in Python for Jess

Question #265405

Create a program wherein the system should be able to retrieve information like who took a particular book or what are the books checked-out by a specific user.


1
Expert's answer
2021-11-13T12:04:12-0500
class Constants:
 def __init__(self):
 self.max_book_issued = 5
 self.max_lenging_day = 10
class Person():
 def __init__(self, p_name, p_address, p_email, p_phone):
 self.p_name = p_name
 self.p_address = p_address
 self.p_email = p_email
 self.p_phone = p_phone
class Address:
 def __init__(self, p_street, p_city, p_state, p_zip_code, p_country):
 self.p_street_address = p_street
 self.p_city = p_city
 self.p_state = p_state
 self.p_zip_code = p_zip_code
 self.p_country = p_country

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS