Stars

Task 1 - 5 Point Star

Write a program that will draw a 5-point star.

Drawing Help

from turtle import *
screen = getscreen()
tom = Turtle()

for counter in range(5):
    tom.forward(250)
    tom.right(???)
    

Colour Help

from turtle import *
screen = getscreen()
tom = Turtle()

screen.bgcolor("black")

tom.fillcolor("yellow")

tom.begin_fill()

# Draw star here
    
tom.end_fill()

 

Task 2 - 7 Point Star

Write a program that will draw a 5-point star.

Drawing Help

from turtle import *
screen = getscreen()
tom = Turtle()

for counter in range(???):
    tom.forward(250)
    tom.right(???)
    

Colour Help

from turtle import *
screen = getscreen()
tom = Turtle()

screen.bgcolor("darkblue")

tom.fillcolor("white")

tom.begin_fill()

# Draw star here
    
tom.end_fill()

 

Task 3 - 8 Point Star

Write a program that will draw a 5-point star.

Drawing Help

from turtle import *
screen = getscreen()
tom = Turtle()

for counter in range(???):
    tom.forward(250)
    tom.right(???)
    

Colour Help

from turtle import *
screen = getscreen()
tom = Turtle()

screen.bgcolor("pink")

tom.fillcolor("red")

tom.begin_fill()

# Draw star here
    
tom.end_fill()

 

Task 4 - 9 Point Star

Write a program that will draw a 5-point star.

Drawing Help

from turtle import *
screen = getscreen()
tom = Turtle()

for counter in range(???):
    tom.forward(250)
    tom.right(???)
    

Colour Help

from turtle import *
screen = getscreen()
tom = Turtle()

screen.bgcolor("lightgreen")

tom.fillcolor("purple")

tom.begin_fill()

# Draw star here
    
tom.end_fill()

 

Targets

State the command to repeat instructions

Identify the correct commands needed to solve a problem

Write a Python program to draw a star