Computer Science, asked by heyaman789, 4 months ago

write a program to print a table of given number​

Answers

Answered by varnika71
4

Explanation:

n=int(input("Enter the number to print

the tables for:"))

for i in range(1,11):

print(n,"x",i,"=",n*i)

this is the program of python..I only know this one..

of u like my answer then makee brainlist and also follow me..

thank u ❤️

Answered by stranger0000
0

Answer :

N = int(input("Enter the number"))

for i in range(1,11) :

print(N,"×", i,"=", N*i)

or

N = int(input("Enter the number"))

i = 0

while i<11 :

print(N,"×", i,"=", N*i)

i+=1

Similar questions