1.

Write a for loop that displays the even numbers from 51 to 60 (in python)​

Answer»

EXPLANATION:

for i in RANGE(51,61):

if i%2==0:

PRINT(i)



Discussion

No Comment Found