Computer Science, asked by rajinder5112, 2 months ago

Q. Write a program in python for accepting input of number from the user and print its table till first 10 multiple for example (2 x1=2,.. 2x10=20).​

Answers

Answered by alonewolf369
0

Explanation:

number = int(input("enter the number : "))

for i in range(1,11)

print(str(number)+ " x " + str(i) "=" number*i)

Similar questions