1.

Write a Python program to display the even numbers from 1to10​

Answer»

EXPLANATION:

for NUM in RANGE(1,100):

if num%2==0:

PRINT (num)



Discussion

No Comment Found