This python code is suppose to form a multiplication table but it is not, can you check the code. *Set of instruction my professor gave: Write a program that will produce the following table below. Your will use a nested for loop (a for within a for) and a duplicate nested while loop (a while within a while)in one program. It will output two identical tables.That means a for loop with in a for loop and a while loop within a while loop. # printing the very first row with X, for i in range(0,13): if i == 0: print("X",end="\t") else: print(i, end="\t") print("\n") # nested for loop to print multiplication values for i in range(1,13): print(i, end="\t") #prints the first column for j in range(1,13): print(i*j, end="\t") # prints the multiplication value print("\n") i = 0 # initializing i for running the while loop # printing the very first row with X, because this row is static while i < 13: if i == 0: print("X",end="\t") else: print(i,end="\t") i = i + 1 # increasing the value of i by 1 each time print("\n") # nested for loop to print multiplication values index = 1 # initializing index for running the while loop while index < 13: print(index, end="\t") # it prints the first column j = 1 while j < 13: print(index*j, end="\t") # it prints the multiplication value j = j + 1 # increasing the value of j by 1 each time index = index + 1 # increasing the value of index by 1 each time print("\n")
*This python code is suppose to form a multiplication table but it is not, can you check the code.
*Set of instruction my professor gave:
Write a
# printing the very first row with X,
for i in range(0,13):
if i == 0:
print("X",end="\t")
else:
print(i, end="\t")
print("\n")
# nested for loop to print multiplication values
for i in range(1,13):
print(i, end="\t") #prints the first column
for j in range(1,13):
print(i*j, end="\t") # prints the multiplication value
print("\n")
i = 0 # initializing i for running the while loop
# printing the very first row with X, because this row is static
while i < 13:
if i == 0:
print("X",end="\t")
else:
print(i,end="\t")
i = i + 1 # increasing the value of i by 1 each time
print("\n")
# nested for loop to print multiplication values
index = 1 # initializing index for running the while loop
while index < 13:
print(index, end="\t") # it prints the first column
j = 1
while j < 13:
print(index*j, end="\t") # it prints the multiplication value
j = j + 1 # increasing the value of j by 1 each time
index = index + 1 # increasing the value of index by 1 each time
print("\n")
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 4 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)