Write a program in python to display even numbers
between 1 and 10 using for loop.
Answers
Answered by
0
Given starting and end points, write a Python program to print all even numbers in that given range. Define start and end limit of range. Iterate from start till the range in the list using for loop and check if num % 2 == 0. If the condition satisfies, then only print the number.26-Oct-2018
Similar questions