Answer:
I hope this helps you out. if you like my answer please give me a crown
Step-by-step explanation:
The program is an illustration of loops.
Loops are used to perform repetitive and iterative operations.
The program in Python where comments are used to explain each line is as follows:
#This prints the output header
print("Number\tMultiplied by 2\t Multiplied by 10")
#This iterates from 0 to 10
for i in range(0,11):
#This prints each number, it's double and its product by 10
print(str(i) + "\t\t" + str(i * 2) + "\t\t" + str(i*10))