#!/usr/bin/python # 7times.py # # The 7 times table. # # AMJ # 2007-01-17 for i in range (13): print i, 'x 7 =', i * 7