What are the values that the variable num contains through the iterations of the following for loop? for num in range(2, 9, 2):

What are the values that the variable num contains through the iterations of the following for loop?
for num in range(2, 9, 2):


Answer: 2,4,6,8


Learn More :