Computer Science, asked by nikhilkumar4567b94, 1 month ago

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

Answers

Answered by Anonymous
0

Explanation:

for num in range(1,100):

if num%2==0:

print (num)

Answered by MANISHNAIDU0135
0

for i in range(1,11):

 if i % 2 == 0:

   print(i)

Hope this helps Please mark me as the brainliest

Similar questions