Horje
multiplication table in python Code Example
print multiplication table python
# Multiplication table (from 1 to 10) in Python

num = 12

# To take input from the user
# num = int(input("Display multiplication table of? "))

# Iterate 10 times from i = 1 to 10 By AyushG
for i in range(1, 11):
   print(num, 'x', i, '=', num*i)
write a python program to find table of a number using while loop
a=int(input("enter table number"))
b=int(input("enter the number to which table is to printed"))
i=1
while i<=b:
    print(a,"x",i,"=",a*i)
    i=i+1
multiplication table python
# Multiplication table (from 1 to 10) in Python
# To take input from the user
# num = int(input("Display multiplication table of? "))
for i in range(1, 11):
   print(num, 'x', i, '=', num*i)
multiplication table in python
m = int(input("m: "))
n = int(input("n: "))

for i in range(1, m+1) :
        for j in range(1, n+1) :
            print("%d\t" % (i*j), end="")
        print()
multiplication table in python
num = int(input("Enter the number: "))

print("****Multiplication table of the number****",)

for i  in range(1,11):
    
    print(str(num) + " X " + str(i) + " = " + str(i*num))




Python

Related
2 d array in python with zeroes Code Example 2 d array in python with zeroes Code Example
python socket set title Code Example python socket set title Code Example
gamma distribution python normalized Code Example gamma distribution python normalized Code Example
find mising number in O(n) Code Example find mising number in O(n) Code Example
user input python Code Example user input python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7