Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
topherPedersen / make_clones.py
Created August 20, 2019 22:49
Create Clones with Loops (for use with turtle graphics at trinket.io)
# 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)