Computer Science, asked by nidakhan9942, 3 months ago

write a python program to print the table of 4​

Answers

Answered by parasharpraveen244
6

Answer:

num = int(input("Show the multiplication table of? "))

# using for loop to iterate multiplication 10 times.

for i in range(1,11):

print(num,'x',i,'=',num*i)

Explanation:

ɧơ℘ɛ ıɬ ɧɛƖ℘ʂ ყơų

Answered by allysia
4

Answer:

\\\tt n=int(inp ut("Enter\ the\ upper\ limit\ of \ table: "))\\for  \ i \ in \ range (1,n+1):\\{\qquad print(4*i)}

Similar questions