Cody Bable

Generation

generate functionWed, 05 Jul 2023

make a 8 by 8 grid

def grid(): for i in range(8): if i % 2 == 0: print "* " * 4 else: print " *" * 4

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