for循环99乘法表倒三角,反三角用for i in range这种
for i in range(0,10): for j in range(1,i+1): print("{}*{}={}".format(j,i,i*j),end="\t") print("")