Cody Bable

Generation

generate functionWed, 05 Jul 2023

make a 8 by 8 grid

def make_8_8_grid(): for i in range(8): for j in range(8): print(" ---") print("| | | | | | | | |") print(" --- --- --- --- --- --- --- ---") make_8_8_grid()

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