A simple and interactive Python program that allows users to generate multiplication tables for any number they input. The program runs continuously until the user chooses to exit.
- Generate multiplication tables for any integer input.
- Continuous execution until the user decides to quit.
- User-friendly input and exit option (
xto exit). - Lightweight and easy to run in any Python environment.
To run the program, use a Python interpreter. Below is an example of how the interaction looks:
Enter a number: 5
Multiplication Table for 5
--------------------------
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
...
5 x 10 = 50
Enter a number (or 'x' to exit): x
Exiting program. Goodbye!