#see how we define a function
#its parameter 'steps' is passed to the 'for' loop
def my_forward(steps):
for i in range(steps):
forward()
#and when calling a function we put certain value for parameter
my_forward(4)
right()
my_forward(5)
left()
#now fix and complete the calling part of code
#so the star is reached and picked