python的几个小程序

##九九乘法口诀 num1=1 while num1<10: num2=1 while num2<=num1: print(num2,"*",num1,"=",num1*num2,end=" ") num2+=1 print() num1+=1 #矩形
posted @ 2017-11-25 21:23  飘零0  阅读(247)  评论(0编辑  收藏  举报