Saturday, 28 August 2021

Python Program : 7 : Print multiplication table of a number input by the user.

PROGRAM :-
import math
n = int(input("Table for : "))
for i in range(1,11):
    print(n,"*",i,":",n*i)

VIDEO LINK : -

No comments:

Post a Comment

Note: only a member of this blog may post a comment.