Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
 
PREVIOUS NEXT
Tagged: #Print #Table #Using #While #Loop #In #Python
ADD COMMENT
Topic
Name
2+7 =