This Python application models a bookstore with Book and Coffee objects. Users can create these objects, interact with them, and see how classes, attributes, properties, and methods work.
-
Book: title, page_count with turn_page() method. Validates page_count is an integer.
-
Coffee: size, price with tip() method. Validates size is Small, Medium, or Large. Tipping increases price by 1.
##Prerequisites
-
Python 3.x installed on your machine
-
A terminal or code editor to run Python scripts