Computer Science, asked by singhkusum6336, 2 months ago

1) Write a Python program to print the multiplication table of 4.​

Answers

Answered by vidhitamane202067
7

Answer:

do as following

and last step enter the no.4

Attachments:
Answered by divyanshigola17
0

Answer:

Python Program to Display the multiplication Table:-

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

num = int(input("Show the multiplication table of? "))# using for loop to iterate multiplication 10 times.

num = int(input("Show the multiplication table of? "))# using for loop to iterate multiplication 10 times.for i in range(1,11):

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)

Similar questions