不死孤狼
IT 从来都是一个有新技术驱动的行业
first = 1

while first <= 9:
sec = 1
while sec <= first:
print ( str(sec)+"*"+str(first) +"=" +str(sec * first),end="\t") #\t为制表符,\n代表换行符
sec += 1
print()
first += 1
posted on 2017-10-16 14:56  不死孤狼  阅读(120)  评论(0)    收藏  举报