Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Title of Lab: Multiplication Table in Python Summary How to simple multiplication table using nested loops and if statements. Prompt the user for the size

Title of Lab: Multiplication Table in Python

Summary

How to simple multiplication table using nested loops and if statements.

Prompt the user for the size of the multiplication table (from 2x2 to 10x10). Use a validation loop to display a warning if the number is less than 2 or greater than 10 and prompt the user to enter the data again until they enter a valid number.

Put a # after any even number in your table (odd numbers will have just a space/nothing after them).

Deliverables

A source code Python file.

A Word document containing both source code and the screen print of the program outputs.

Lab Steps

Sample Output:

The output should be something similar to the following.

What size multiplication table would you like? (2 - 10): 1

Invalid entry - Enter a number between 2 and 10

What size multiplication table would you like? (2 - 10): 15

Invalid entry - Enter a number between 2 and 10

What size multiplication table would you like? (2 - 10): 10 

Hints:

The outer loop will start each new row.

The inner loop will control the display of each column in the row.

Note that to keep the numbers right-aligned, there are different amounts of space before single digit numbers (those less than 10), double digit numbers (those between 10-99), and triple digit numbers (100).

The row labels can be added to your inner loop (note that there are different amounts of space required after the number in the row labels.

The column labels should use a separate loop(s) that run before the main outer loop.

You can continue printing on the same line using end="" in your print statement. This will come in handy if you want to print several things on one line inside a loop. For example, assuming the value of name is Ada, the following will print "Hello Ada" on one line:

print("hello ", end="")

print(name, end="")

Tips:

Start early!

Do the basic table first without worrying about spacing or lining things up, and don't include row or column headings (add those later).

Once you get the numbers in the correct position, think about adding the proper amount of space before each number to line things up.

Once the columns line up, add the #/space for even/odd numbers.

Once the basic table is working, then add the row and column headings, and finally the main title.

Test as you go!

I have created the table but I'm unable to get it to line up? How do I get it to look like a table?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction to Wireless and Mobile Systems

Authors: Dharma P. Agrawal, Qing An Zeng

4th edition

1305087135, 978-1305087132, 9781305259621, 1305259629, 9781305537910 , 978-130508713

More Books

Students also viewed these Programming questions