python学习记录4------while和if的应用-输出99乘法表

 1 while True :
 2     height= None
 3     try :
 4         height= int(input("请输入乘法表的行数:"))
 5     except :
 6         pass
 7     if type(height) == int :
 8         inc_height = 1
 9         while inc_height<= height :
10             i=1
11             while i<=inc_height:
12                 print(str(i)+"*"+str(inc_height)+"="+str(i*inc_height),end="    ")
13                 i+=1
14             if inc_height < height: 
15                 print()
16             inc_height+=1
17         #print(inc_height)
18         if inc_height >= height :
19             #flag = False
20             break
21     else :
22         print("错误!!请输入数字")

 在直角三角的基础上可以修改代码实现;思想就是:确定一个行(inc_height)和列(i),每次打印一行,i从1~inc_height 变化

转载于:https://www.cnblogs.com/fangxiaosheng/p/11540793.html

你可能感兴趣的:(python学习记录4------while和if的应用-输出99乘法表)