Answers for "given the list of students in a table write a python program that asks for user inputs"

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

Code answers related to "given the list of students in a table write a python program that asks for user inputs"

Python Answers by Framework

Browse Popular Code Answers by Language