python用while循环实现九九乘法表
#九九乘法表代码实现
first = 1
while first<=9:
second = 1
while second <= first:
print(str(second)+"*"+str(first)+"=",second*first,end="\t")
second +=1
print() #换行作用
first +=1
运行结果

#九九乘法表代码实现
first = 1
while first<=9:
second = 1
while second <= first:
print(str(second)+"*"+str(first)+"=",second*first,end="\t")
second +=1
print() #换行作用
first +=1
运行结果
