Computer Science, asked by alok3185, 10 months ago

write a python program that prints the table of given no. in this form ex-5×1=5​

Answers

Answered by Mkarthik14
1

The program which you were looking for is here.

ITS IN PYTHON :

table=int(input(' enter which table you want to print : ')

for i in range (1,11) :

print(table*i)

hope this will be use full

Answered by Anonymous
2

Answer:

num = 5

for a in range (1,11) :

⠀⠀⠀print num, 'x' , a, '=' , num*a

hence this was the program

output

  • 5x1=5
  • 5x2=10
  • 5x3=15
  • 5x4=20
  • 5x5=25
  • 5x6=30
  • 5x7=35
  • 5x8=40
  • 5x9=45
  • 5x10=50

hope this helps you ♡

Similar questions