Ad
  • Custom User Avatar

    That basically allows you to Increment by 2 in the for Loop, syntax is as follows:

    for i in range(beginning, end, step)

    Example: for i in range(0, 12, 2) will iterate through numbers 0 to 12 incrementing by 2 every iteration so (0, 2, 4, 6, 8, 10)