print table of 2 using while loop

 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ल

0 Comments

Post a Comment

Post a Comment (0)

Previous Post Next Post