Python一些程式碼

近我者赤發表於2024-08-05

1.九九乘法表

print('\n'.join([' '.join(["%2s ×%2s = %2s"%(j,i,i*j) for j in range(1,i+1)]) for i in range(1,10)]))

相關文章