Computer Science, asked by AsmitaBharti, 4 months ago

create a program in python to print the sum of all even numbers in a range

Answers

Answered by Rambo706
2

Answer:

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

Explanation:

please follow and brainliest

Answered by hridayrajandas
0

Answer:

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.

Similar questions