九九乘法表

row = 1
while row <=9:
num =1
while num<=row:
print(str(num)+"*"+str(row)+"="+str(num*row),end="\t")
num+=1
print()
row+=1

 

 

 

posted on 2017-12-25 14:36  无双·影  阅读(59)  评论(0)    收藏  举报