004.python自我记录

输入行数,得到成数列递增的三角形

height = int(input("the height is>>"))
num = 1
h = 1
while num <= height:
    h = num #让h永远等值num,与循环后的v无关
    while h > 0:
        print("#",end="")
        h -= 1
    print()
    num +=1

 

九九乘法表

l=1
s=1
z=2

while l<10:
    w=1 
    while w<z: #w*z(z在每次循环开始不断增加,w在循环内增加)
        print(w,"x",s,"=",w*s,end="\t")
        w += 1
    print()
    l += 1
    s += 1
    z += 1

 

004.python自我记录

上一篇:Java初学


下一篇:SpringMVC interceptor拦截器