Generation

generate functionTue, 23 May 2023

create with turtle function an arrow pointing to the right

def drawArrow(turtle, size): for i in range(0, 4): turtle.forward(size) turtle.right(90) drawArrow(turtle, 100)

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