Cody Bable

Generation

generate functionWed, 05 Jul 2023

make a 8 by 8 grid

def grid_8_by_8(x, y): for i in range(1, 9): print(str(x) + ' ' + str(y)) x = x + 5 y = y + 5 grid_8_by_8(1, 2)

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