print("Table of 2(Two)")
# static print table of 2 using while loop...
d=2
while (d<=20):
print(d,"\n") # यहाँ \n नयी लाइन के लिए use किया गया है l
d=d+2ल
print("Table of 2(Two)")
# static print table of 2 using while loop...
d=2
while (d<=20):
print(d,"\n") # यहाँ \n नयी लाइन के लिए use किया गया है l
d=d+2ल
Post a Comment