1.

Write the output from the following code:s = 0for I in range(10,2,-2):s+=Iprint “sum= ",s

Answer»

The output is

sum = 28



Discussion

No Comment Found