/** * *打印9*9的乘法表并以表格形式显示; **/ echo '
print("\n".join(["\t".join(["%sx%s=%s" %(x,y,x*y) for x in range(1,y+1)]) for y in range(1,10)])) 效果