标签:python
i =1 while i <=9: j = 1 while j <= i: print(‘%d*%d=%-2d‘%(j,i,j*i),end =‘‘) j+=1 print(‘‘) i += 1
本文出自 “11508612” 博客,谢绝转载!
Python笔记(9*9)
原文地址:http://11518612.blog.51cto.com/11508612/1970810