So, I'm pretty new with turtle, and I was going to make some text, but when I use this function;
turto1=turtle.Turtle
turto2=turtle.Turtle
def spuper():
turto1.penup()
turto2.penup()
turto1.goto(-150,40)
turto2.goto(-130,40)
I get this error:
TypeError: penup() missing 1 required
positional argument: 'self'
I'm not sure why this happens, and I'm pretty sure the penup() command doesn't have any arguments. Does anyone know what I did wrong?