python21 - 云代码空间
——
for s in range(1,10):
for i in range(1,s+1):
print(s, '*', i, '=', s * i, end='\t')
print()