At the end of this lesson, you will be able to:
# Created by: Mr. Coxall# Created on: Sep 2017# Created for: ICS3U# This program shows an example of nested loopsfor outerCounter in range(1,11): for innerCounter in range(1,11): result = outerCounter * innerCounter print result, print('')A => a
A => b
...
Z => y
Z => z