Computer Science, asked by maanmadhu12, 6 months ago

what will be the output of following program:number-110,print(number in range (100,200)​

Answers

Answered by pandeysangeeta457
0

Answer:

Given starting and end points, write a Python program to print all even numbers in that given range.

Example:

Input: start = 4, end = 15

Output: 4, 6, 8, 10, 12, 14

Input: start = 8, end = 11

Output: 8, 10

Example #1: Print all even numbers from given list using for loop

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.

# Python program to print Even Numbers in given range

start, end = 4, 19

# iterating each number in list

for num in range(start, end + 1):

# checking condition

if num % 2 == 0:

print(num, end = " ")

Similar questions