4.8 Code Practice: Question 3

The code practice is an illustration of loops;
Loops are statements that are used to perform repeated actions
The program in Python, where comments are used to explain each action is as follows:
#This iterates from 200 to 300
for i in range(200,301,2):
#This prints the even numbers
print(i)
Read more about loops at:
https://brainly.com/question/24833629
#SPJ2