Answers for "python multiplication table while loop"

1

python multiplication table while loop

num = int(input("Multiplication using value? : "))

while num <= 10:
    i = 1
    while i <= num:
        product = num*i
        print(num, " * ", i, " = ", product, "\n")
        i = i + 1
    print("\n")
    num = num + 1
Posted by: Guest on July-08-2021
0

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
Posted by: Guest on July-30-2020
-1

python multiplication table while loop

prabh
Posted by: Guest on July-08-2021

Code answers related to "python multiplication table while loop"

Python Answers by Framework

Browse Popular Code Answers by Language