For an assignment, I have to create a turtle program on python which uses recursion to draw a shape.
However, I am unable to even create the necessary screen to draw any shapes on. I am currently using Google Collab.
import turtle
t = turtle.Turtle()
Is what my program looks like right now, I have turtle installed and I have searched everywhere for alternate solutions to creating a screen but every line I have found more or less has the same line, which doesn't work for me.
Any ideas on how to fix this?