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 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")
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 4 images