#!/usr/bin/python3 # -*- coding: utf-8 -*- # A for loop construct iterates a specified number # of times. The below for loop iterates with # counter being 0, 1, 2, 3, then 4. for counter in range(0, 5): print(counter)