python练习题-99乘法表

99乘法表
i=1
x=1
while i<=9:
j=1
while j<=x:
print(‘%2dx%2d=%2d’%(i,j,i*j),end=’ ‘)
j+=1
print()
x+=1
i+=1

猜你喜欢

转载自blog.csdn.net/weixin_32759777/article/details/81455531