Python Forum
Nested Loop multiplication table
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Nested Loop multiplication table
#1
I am trying to recreate a multiplication table, but i am stuck on where to put what code where.
Here are the specifications for it:

Write a program described below:
Read an integer value between 2 and 20 and store the value as upper.
Using a nested-loop print the multiplication table from 2 to the upper value.
Using a loop print the heading as shown below.
This is what it should look like:

What is the upper bound of multiplication table? 9
The multiplication table for 2 to 9
--------------------------------------
2 3 4 5 6 7 8 9
--------------------------------------
2 | 4 6 8 10 12 14 16 18
3 | 6 9 12 15 18 21 24 27
4 | 8 12 16 20 24 28 32 36
5 | 10 15 20 25 30 35 40 45
6 | 12 18 24 30 36 42 48 54
7 | 14 21 28 35 42 49 56 63
8 | 16 24 32 40 48 56 64 72
9 | 18 27 36 45 54 63 72 81

Any help would be amazing!
Reply
#2
show what you've written so far
Reply
#3
(Feb-28-2018, 01:44 AM)Larz60+ Wrote: show what you've written so far

def main():

    rows = int(input("What is the upper bound of multiplication table? "))
    print("The multiplication table for 2 to", rows)
    print()
    counter = 0
    multiplicationTable(rows,counter)

def multiplicationTable(rows,counter):
    size = rows + 1
    for i in range(1,size):
        for nums in range (1,size):
            value = i*nums
            print(value,sep=' ',end="\t")
            counter += 1
            if counter%rows == 0:
                print()
            else:
                counter
main()
Reply
#4
It seems to be working and spaced properly,
all you need is the header separators.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  If statements and multiplication elroberto 1 1,719 Jun-22-2022, 05:35 PM
Last Post: deanhystad
Bug Need help on this nested loop task PP9044 4 4,672 Apr-16-2021, 01:31 PM
Last Post: perfringo
  Find the maximum multiplication ercv 3 2,162 Nov-30-2020, 11:55 AM
Last Post: DeaD_EyE
  Nested if stmts in for loop johneven 2 5,896 Oct-19-2019, 04:05 AM
Last Post: xeedon
  Nested for loop issue always using index 0 searching1 2 2,599 Dec-30-2018, 09:17 AM
Last Post: searching1
  Multiplication Table Homework mcnhscc39 6 4,628 Nov-25-2018, 04:01 PM
Last Post: mcnhscc39
  nested while loop flow help Ponamis 4 2,974 Nov-02-2018, 11:22 PM
Last Post: Ponamis
  Nested loop Tryhard20 3 5,730 Sep-05-2018, 04:57 AM
Last Post: volcano63
  creating a 3x3 multiplication table aditvaddi 1 3,624 Jun-18-2018, 06:05 AM
Last Post: volcano63
  Multiplication Table funnybone04 4 5,789 Apr-08-2018, 03:03 AM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020