Python:Flags with Rectangles Tutorial
From Progzoo
Contents |
- You may want to review: Python:drawing and filling rectangles before tackling these questions.
- You might want to try Python:coordinates exercises if you are not comfortable with x,y coordinates.
Libya
The flag of Libya is a simple green rectangle.
Try the program as it is given, then change it so that the green rectangle is 3 wide.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
France
The flag of France is blue, white and red.
The code given draws only one of the three rectangles required, and it is in the wrong place.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Germany
The flag of Germany is black, red and yellow.
Note that:
- 0,0 is in the bottom left corner
- yellow is color.rgb(1,1,0)
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Japan
- The flag of Japan is a red circle on a white background.
- The rectangle is 150 by 100.
- The circle is in position 45,20, width and height are 60,60.
- The dark lines are NOT part of the flag. They are shown as guides only.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]

