#!/usr/bin/python3 # -*- coding: utf-8 -*- """ Range is inclusive to exclusive. """ for index in range(0, 5): print(index) # Do other stuff here