This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Click in the righthand window to make it active then use your arrow | |
# keys to control the spaceship! | |
import turtle | |
import random | |
screen = turtle.Screen() | |
# this assures that the size of the screen will always be 400x400 ... | |
screen.setup(400, 400) |