CSCI-UA.002 -- Python -- Summer, 2015
Nathan Hull
ASSIGNMENT 6

Due: Thursday, July 30th


Write a program that allows a user to type an interactive series of commands which would control the turtle. Here are the possible commands:

Note that each one of these commands should call its own Function (Def). In the case of te F, L, and R commands, those functions should be sent a parameter indicating the distance or the number of degrees.

Here is a possible session which your user might have:
DIST
100
F
L
F
L
F
L
F
L
RED
DEG
120
F
L
F
L
F
L
Q

This would draw a red triangle inside of a black box.


PART TWO:

 Notes about your program: