Python Turtle Module Causes Os X To Crash
I'm working through Think Python chapter 4, where they tell you to type the following to see if you have the turtle module: import turtle bob = turtle.Turtle() This is supposed to
Solution 1:
try and set the screen and mainloop
window = turtle.Screen()
window.setup(width,height)
whileTrue:
window.update()
window.mainloop()
Post a Comment for "Python Turtle Module Causes Os X To Crash"