Computer Science, asked by prathamsp1005, 1 month ago

Write a python program to get multiplication table of 26 .​

Answers

Answered by IceWeb
12

Python program to print multiplication table:

num = int(input("Enter the number: "))

print("Multiplication Table of", num)

for i in range(1, 11):

print(num,"X",i,"=",num * i)

Enter the number: 23

Answered by Oreki
5

{\bf Co de}

    \texttt{for i in range(1, 11):}\\\texttt{\hspace{1em} print(f"26 $\times$ \{i\} = \{26 * i\}")}

Similar questions