DEV Community

Discussion on: teach your kids to build their own game with Python - 1

Collapse
 
madebydavid profile image
David Sutherland

This is great!

In your listing at the end I think you might be missing some lines - before the functions:

player = turtle.Turtle()
Enter fullscreen mode Exit fullscreen mode

And a little later, before binding the event handlers:

turtle.listen()
Enter fullscreen mode Exit fullscreen mode
Collapse
 
mustafaanaskh99 profile image
Mustafa Anas

Correct!
thank you for the note