Horje
python multiplication table while loop Code Example
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
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
python multiplication table while loop
prabh




Python

Related
make new package ros2 python Code Example make new package ros2 python Code Example
make new package ros2 Code Example make new package ros2 Code Example
create package ros2 python Code Example create package ros2 python Code Example
dataframe from two series Code Example dataframe from two series Code Example
how to receive password using tkinter entry Code Example how to receive password using tkinter entry Code Example

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