#! /usr/bin/python

for i in range(1,10):

for j in range(1,i+1):

print j,'x',i,'=',i*j,

print "\n" 

python 打印99乘法表_python