Python Forum
Nested Loop multiplication table
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Nested Loop multiplication table
#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


Messages In This Thread
Nested Loop multiplication table - by SushiRolz - Feb-28-2018, 12:47 AM
RE: Nested Loop multiplication table - by Larz60+ - Feb-28-2018, 01:44 AM
RE: Nested Loop multiplication table - by SushiRolz - Feb-28-2018, 01:59 AM
RE: Nested Loop multiplication table - by Larz60+ - Feb-28-2018, 04:34 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  If statements and multiplication elroberto 1 1,823 Jun-22-2022, 05:35 PM
Last Post: deanhystad
Bug Need help on this nested loop task PP9044 4 4,816 Apr-16-2021, 01:31 PM
Last Post: perfringo
  Find the maximum multiplication ercv 3 2,304 Nov-30-2020, 11:55 AM
Last Post: DeaD_EyE
  Nested if stmts in for loop johneven 2 6,019 Oct-19-2019, 04:05 AM
Last Post: xeedon
  Nested for loop issue always using index 0 searching1 2 2,689 Dec-30-2018, 09:17 AM
Last Post: searching1
  Multiplication Table Homework mcnhscc39 6 4,811 Nov-25-2018, 04:01 PM
Last Post: mcnhscc39
  nested while loop flow help Ponamis 4 3,131 Nov-02-2018, 11:22 PM
Last Post: Ponamis
  Nested loop Tryhard20 3 5,851 Sep-05-2018, 04:57 AM
Last Post: volcano63
  creating a 3x3 multiplication table aditvaddi 1 3,719 Jun-18-2018, 06:05 AM
Last Post: volcano63
  Multiplication Table funnybone04 4 5,934 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