Page 59 - think python 2
P. 59

4.12. Exercises
37
 Figure 4.1: Turtle flowers.
Figure 4.2: Turtle pies.
docstring: A string that appears at the top of a function definition to document the func- tion’s interface.
precondition: A requirement that should be satisfied by the caller before a function starts. postcondition: A requirement that should be satisfied by the function before it ends.
4.12 Exercises
Exercise 4.1. Download the code in this chapter from http://thinkpython2.com/code/
polygon. py .
1. Draw a stack diagram that shows the state of the program while executing circle(bob, radius). You can do the arithmetic by hand or add print statements to the code.
2. The version of arc in Section 4.7 is not very accurate because the linear approximation of the circle is always outside the true circle. As a result, the Turtle ends up a few pixels away from the correct destination. My solution shows a way to reduce the effect of this error. Read the code and see if it makes sense to you. If you draw a diagram, you might see how it works.
Exercise 4.2. Write an appropriately general set of functions that can draw flowers as in Figure 4.1.
Solution:
// thinkpython2. com/ code/ polygon. py .
Exercise 4.3. Write an appropriately general set of functions that can draw shapes as in Figure 4.2.
Solution: http: // thinkpython2. com/ code/ pie. py .
Exercise 4.4. The letters of the alphabet can be constructed from a moderate number of basic ele- ments, like vertical and horizontal lines and a few curves. Design an alphabet that can be drawn with a minimal number of basic elements and then write functions that draw the letters.
You should write one function for each letter, with names draw_a, draw_b, etc., and put your functions in a file named letters.py. You can download a “turtle typewriter” from http: // thinkpython2. com/ code/ typewriter. py to help you test your code.
http: // thinkpython2. com/ code/ flower. py , also requires
http:















































































   57   58   59   60   61