九九乘法表
my_code:
# 输出九九乘法表 for i in range(0,9): for j in range(0,i+1): ans = (i+1)*(j+1) print('%i x %i = %i '%(i+1,j+1,ans),end=''); print(' ')