Computer Science, asked by riyaa65, 2 months ago

write a program to print a table of a given number (6)​

Answers

Answered by mythrayee2007
0

# Python Program to Print Multiplication Table of a Number

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11):

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 6

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 6

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 12

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 126 X 3 = 18

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 126 X 3 = 186 X 4 = 24

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 126 X 3 = 186 X 4 = 246 X 5 = 30

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 126 X 3 = 186 X 4 = 246 X 5 = 306 X 6 = 36

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 126 X 3 = 186 X 4 = 246 X 5 = 306 X 6 = 366 X 7 = 42

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 126 X 3 = 186 X 4 = 246 X 5 = 306 X 6 = 366 X 7 = 426 X 8 = 48

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 126 X 3 = 186 X 4 = 246 X 5 = 306 X 6 = 366 X 7 = 426 X 8 = 486 X 9 = 54

# Python Program to Print Multiplication Table of a Numbernum = int(input("Enter the number: "))print("Multiplication Table of", num)for i in range(1, 11): print(num,"X",i,"=",num * i)Output:Enter the number: 6Multiplication Table of 66 X 1 = 66 X 2 = 126 X 3 = 186 X 4 = 246 X 5 = 306 X 6 = 366 X 7 = 426 X 8 = 486 X 9 = 546 X 10 = 60

Answered by shristygarg1812
0

Explanation

  • a=int(input('enter a number ')
  • now click on |> this button
  • aayega upper wali image me usme number 6 likh do aur space ka button pe click Kar do

please mark my answer as brainlist

Attachments:
Similar questions