Computer Science, asked by vartikagupta0101, 1 month ago

it is a python equation. if someone know what is wrong here please answer.
num = int(input("Enter any number"))
i=1
while i<= 10:
print(num*i)
i =i+1


Equestriadash: If your intention is to obtain the table of the entered number, the program is fine, assuming your indentation is right as well.

Answers

Answered by Anonymous
0

Try Replacing all the i with num.

Similar questions