python练习程序(c100经典例8)时间:2023-01-12 18:10:05题目: 输出9*9口诀。 for i in range(1,10): for j in range(1,i+1): print str(j)+"*"+str(i)+"="+str(i*j) , print