I just want to know the logic within this problem. I just want my program to execute another loops once the first loop was done.
for i in range(1,5):
for j in range(1,5):
print(i*j,end="\t")
print("\n")
After the code above was done I want my program to perform another loop which is this one:
for i in range(5,1,-1):
for j in range(5,1,-1):
print(i*j,end="\t")
print("\n")