9*9乘法口诀
===
#!/usr/bin/env python
# -*- coding: utf-8 -*-
for i in range(0, 10):
print
for j in range(1, i+1):
print "%d*%d = %d" %(i, j, i*j) ,