Horje
Print Table Using While Loop In Python Code Example
Print Table Using While Loop In Python
number = int(input("Enter A Number : "))

num = 1
while num <= 10:
    total = num * number
    print(total)
    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

Related
how to play sound after pressing a button in tkinter Code Example how to play sound after pressing a button in tkinter Code Example
scikit learn linear regression Code Example scikit learn linear regression Code Example
smp meaning Code Example smp meaning Code Example
python tkinter clear textbox Code Example python tkinter clear textbox Code Example
pandas reset row indices Code Example pandas reset row indices Code Example

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