python 九九乘法表(while实现)

python 九九乘法表(while实现)

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

 

转载于:https://www.cnblogs.com/aliensky/p/9745947.html

你可能感兴趣的:(python 九九乘法表(while实现))