1.

Write a program of nested for loop of output:24 68 10 12 14 16 18

Answer» <pre>for i in range (2,20,2): print (i)</pre><br>for i in range(2,20,2): print(i)it will five you your desired result in range function (start,stop,step)this is small explanation i hope it will help you


Discussion

No Comment Found