This Python program generates a receipt for purchases made at the "Awesome Store". It's a simple command-line application that allows users to input items they wish to purchase along with their prices. After all items are entered, the program calculates the total cost including tax.
- User Input for Items: Users can input the name and price of each item they wish to purchase.
- Dynamic Item Addition: Items can be added continuously until the user types 'done'.
- Tax Calculation: Automatically calculates the total cost including a predefined tax rate.
To run this program, you need to have Python installed on your machine. Additionally, the reportlab
library is required for PDF generation capabilities.
- Ensure Python is installed on your system.
- Install the
reportlab
library using pip:
pip install reportlab