| A | B |
| Integrated Development Environment (IDE) | software program used to write code and develop programs |
| what shape would this make? circle(100, steps=4) | square |
| freezing | when a window stops responding |
| developer | another name for a computer programmer |
| Your cursor shows you... | where you are about to type |
| what command would rotate the turtle counterclockwise in a full circle? | left(360) |
| what command would rotate the turtle clockwise in a full circle? | right(360) |
| The command that moves the turtle forward 100 pixels | forward(100) |
| Radius | distance from center of circle to the outer line of the circle |
| When you use the color() command, what should you include around the color name in the argument? | "" quotation marks |
| The Python Shell has | a command prompt >>> |
| To save a program you should create it in | the text editor window |
| Python was created to be more ___________ than other programming languages | human readable |
| The turtle program is a/an ___________ that can be imported for use in Python code. | Module |
| Where do you put an argument for a command | inside the parentheses () |