-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
Currently, I have an adapter file so that someone can just type:
forward()
right()
forward(60)
The implementation of forward() in turn calls turtle.forward()
So what I'm wondering is:
(1) Is it pedagogically harder to replace the above with either
turtle.forward()
turtle.right()
or
turtle.forward()
.right()
(2) Given that we make that change, is it a burden for them to first create the turtle
turtle = Turtle()
?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels