Cody Bable

Generation

generate functionTue, 25 Apr 2023

create a multiplication table grid without tabs

for i in range(1, 10): for j in range(1, i + 1): print('{}x{}={}\t'.format(i, j, i * j), end='') print()

Want to kickstart your project?Use the new AI Studio to create your code