391# Python Naming conventions: try it
2
3# constants
4NUMBER_OF_SIDES = 3
5NUMBER_OF_SHAPES = 5
6SPACE_BETWEEN_SHAPES = 70
7SIZE = 50
8
9# variables
10line_colour = input("What colour would you like to draw the shapes?")
11fill_colour = input("What colour would you like to fill the shapes?")
12
13# drawing code
14import turtle
15t = turtle.Turtle()
16
17# draw each shape
18for s in range(NUMBER_OF_SHAPES):
19t.color(line_colour)
20t.pendown()
21t.begin_fill()
22
23# draw individual shape
24for i in range(NUMBER_OF_SIDES):
25t.left(360 / NUMBER_OF_SIDES)
26t.forward(SIZE)
27
28# fill and move on to next shape
29t.color(fill_colour)
30t.end_fill()
31t.penup()
32t.left(360 / NUMBER_OF_SHAPES)
33t.forward(SPACE_BETWEEN_SHAPES)
34
35
36# Challenges
37# 1) Try changing the number of shapes constant to 6
38# 2) Change the line_colour variable so that it's always set to "red"
39# 3) Change the line_colour variable into a constant called LINE_COLOUR