sceneTest: excellent

(evaluated at 20210628@17:48:39)

Rubric report

Overall evaluation: excellent

You accomplished all core and extra goals. Great job!

accomplished Procedure Requirements
Code checks which require that your code is written in a certain way, regardless of what happens when it runs (e.g., how many lines of code call a certain function).
Accomplished all core and extra procedure goals.
accomplished Core goals
Complete all core goals for core credit. Get partial credit for completing at least half, and more partial credit for completing at least 90%.
Accomplished all 3 goals.
accomplished Import everything from the turtleBeads module
We examined your code to check whether it imports everything from the turtleBeads module.
Expected exactly 1 import of everything from the turtleBeads module, found 1.
Notes
  • Found on line(s): 9
accomplished Call forward
Call forward, fd, backward, bk, or back in at least once place.
Expected at least 1 call to forward, found 2.
Notes
  • Found on line(s): 18, 13
accomplished Call left
Call left, lt, right, or rt in at least once place.
Expected at least 1 call to left, found 1.
Notes
  • Found on line(s): 12
accomplished Extra goals
Complete all extra goals in addition to the core goals for a perfect score.
Accomplished all 4 goals.
accomplished Call drawCircle
Call drawCircle in at least once place.
Expected at least 1 call to drawCircle, found 1.
Notes
  • Found on line(s): 21
accomplished Call pencolor
Call pencolor or color in at least once place.
Expected at least 1 call to pencolor, found 2.
Notes
  • Found on line(s): 17, 19
accomplished Call begin_fill
Call begin_fill in at least once place.
Expected at least 1 call to begin_fill, found 1.
Notes
  • Found on line(s): 20
accomplished Call end_fill
Call end_fill in at least once place.
Expected at least 1 call to end_fill, found 1.
Notes
  • Found on line(s): 22

Your code

File scene.py

1  """
2  scene.py
3  
4  Your name: Peter Mawhorter
5  Your username: pmwh
6  Submission date: 2021-6-28
7  """
8  
9  from turtleBeads import *
10  
11  penup()
12  lt(90)
13  bk(50)
14  pendown()
15  
16  pensize(8)
17  color("brown")
18  fd(140)
19  color("DarkGreen", "Green")
20  begin_fill()
21  drawCircle(50)
22  end_fill()
23  
24  

Test results

File 'scene.py'
We will evaluate your submitted file 'scene.py'.
Evaluating 'scene.py'
Code in the target file
We parsed the code in the target file and paidattention to how it was written.
The code for 'scene.py' (shown elsewhere).