India Languages, asked by parthshn6734, 7 months ago

Wap to display first 10 even numbers

Answers

Answered by chandanakhatua321
0

Answer:

this will help you pls mark me as brainliest

Attachments:
Answered by gaganadithyareddy9
0

Answer:

Hey! Here is your python code...

print("First 10 even numbers are:", end=' ')

for i in range(11):

   if i%2 == 0:

       print(i, end=', ')

# HOPE THIS HELPS!!

Similar questions