Computer Science, asked by psychoninja65, 2 months ago

Identify the correct step value in the statement : >>for I in range (10,20,2)​

Answers

Answered by allysia
0

Answer:

The step value is 2 here.

Explanation:

Range function works in the following way:

range(start, end, step)

The value (10,20,2) will return an output of 10, 12, 14,16,18 when printed.

Similar questions