HOME/Articles/

simple python-example-8 (snippet)

Article Outline

Python example 'python-example-8'

python-example-8

Python example: python-example-8

#!/usr/bin/python
# -*- coding: UTF-8 -*-

for i in range(1,10):
    for j in range(1,10):
        result = i * j
        print('%d * %d = % -3d' % (i,j,result))
    print('')