Instructions MULTIPLICATION TABLE Program Features: 1. Ask the user for the table size. 2. Print the multiplication tabl
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Instructions MULTIPLICATION TABLE Program Features: 1. Ask the user for the table size. 2. Print the multiplication tabl
Instructions MULTIPLICATION TABLE Program Features: 1. Ask the user for the table size. 2. Print the multiplication table as in the below sample with a table size of 5: 01 02 03 04 05 02 04 06 08 10 03 06 08 12 15 04 08 12 16 20 05 10 15 20 25 Requirements: • Use variables in your code as constants are not allowed. Code should be concise and easy to follow Generalize your code to fit MT of any size. . . • Use comments to explain your coding rationales. Name your file as "Lastname-MT.py" .