first = 1
while first<=9:
sec=1
while sec<=first:
print(str(sec),"x",str(first),"=",first*sec,end="\t")
sec+=1
print()
first+=1
标签:font first round span 乘法 end while back int()
first = 1
while first<=9:
sec=1
while sec<=first:
print(str(sec),"x",str(first),"=",first*sec,end="\t")
sec+=1
print()
first+=1
标签:font first round span 乘法 end while back int()
原文地址:https://www.cnblogs.com/bushii/p/8454205.html