row = 1

while row <= 9:
	col = 1
	while col <= row:
		print('%d*%d=%d'%(col, row, row*col), end='\t')
		col += 1

	print('')
	row += 1

相关文章:

  • 2022-12-23
  • 2021-09-07
  • 2021-08-03
  • 2021-11-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-21
  • 2022-12-23
  • 2021-04-06
  • 2021-11-11
  • 2022-12-23
相关资源
相似解决方案