from ColabTurtle.Turtle import forward, penup, pendown, right, initializeTurtle, speed initializeTurtle() speed(5) right(90) # so that the drawing still fits into the canvas for i in range(20): forward(i) penup() forward(5) pendown()